From e99b9c6bac7f5b835f025fa1c342e315b3c3d812 Mon Sep 17 00:00:00 2001 From: navewindre Date: Fri, 15 Dec 2023 06:02:12 +0100 Subject: aaaa --- sourcemod/scripting/game_manager.sp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sourcemod/scripting/game_manager.sp') diff --git a/sourcemod/scripting/game_manager.sp b/sourcemod/scripting/game_manager.sp index 7959880..f182205 100644 --- a/sourcemod/scripting/game_manager.sp +++ b/sourcemod/scripting/game_manager.sp @@ -414,7 +414,7 @@ public Event_PlayerDeath( Handle:event, const String:name[], bool dontBroadcast public Action:RespawnPlayerDeathmatch( Handle:timer, any:userid ) { new dmmode = GetConVarInt( g_h_nh_warmup ); - if( !dmmode ) + if( !dmmode && !g_isKZ ) return; new id = GetClientOfUserId( userid ); @@ -523,7 +523,7 @@ public Action:Event_PlayerTeam( Handle:event, const String:name[], bool dontBroa CreateTimer( 0.2, VerifyTeamCounts, 0, 0 ); new uid = GetEventInt( event, "userid" ); - if( GetConVarInt( g_h_nh_warmup ) != 0 ) { + if( GetConVarInt( g_h_nh_warmup ) != 0 || g_isKZ ) { CreateTimer( 0.5, RespawnPlayerDelay, uid ); } -- cgit v1.2.3