From d2a812153b65a4d40fd3bc90c7147cd08e035123 Mon Sep 17 00:00:00 2001 From: zaCade Date: Sun, 2 Mar 2025 10:23:52 +0100 Subject: [PATCH] [StackMode] Don't block player_death (Post hook) --- StackMode/scripting/StackMode.sp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/StackMode/scripting/StackMode.sp b/StackMode/scripting/StackMode.sp index 70b5be46..d1944405 100644 --- a/StackMode/scripting/StackMode.sp +++ b/StackMode/scripting/StackMode.sp @@ -736,7 +736,7 @@ public Action OnPlayerDeath(Event event, const char[] name, bool dontBroadcast) g_iVIPClientTwo = -1; } - return Plugin_Handled; + return Plugin_Continue; } g_iVIPClient = PotentialVIPClient[GetRandomInt(0, PotentialVIPCount - 1)]; @@ -775,7 +775,7 @@ public Action OnPlayerDeath(Event event, const char[] name, bool dontBroadcast) if(PotentialVIPCount < 1) { CPrintToChatAll("{cyan}[UNLOZE StackMode]{lightgreen} Couldn't find a valid client to set as 2nd Stack Master. Sticking with only one Stack Master for this round."); - return Plugin_Handled; + return Plugin_Continue; } g_iVIPClientTwo = PotentialVIPClient[GetRandomInt(0, PotentialVIPCount - 1)]; @@ -786,7 +786,7 @@ public Action OnPlayerDeath(Event event, const char[] name, bool dontBroadcast) CPrintToChatAll("{cyan}[UNLOZE StackMode] {white}%N{lightgreen} is the 2nd Stack Master! Stay near him or you will lose HP.", g_iVIPClientTwo); } - return Plugin_Handled; + return Plugin_Continue; } public void OnClientDisconnect(int client)