From 4174b5bd7e4f7e99f86db9db75a57043dbd9dbcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nopied=E2=97=8E?= Date: Sun, 7 Jul 2024 16:42:22 +0900 Subject: [PATCH] math is hard --- addons/sourcemod/scripting/freak_fortress_2.sp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/sourcemod/scripting/freak_fortress_2.sp b/addons/sourcemod/scripting/freak_fortress_2.sp index 0c33986..69d430b 100644 --- a/addons/sourcemod/scripting/freak_fortress_2.sp +++ b/addons/sourcemod/scripting/freak_fortress_2.sp @@ -1142,9 +1142,9 @@ public Action OnRoundStart(Event event, const char[] name, bool dontBroadcast) } } - CreateTimer((tf_arena_preround_time - 10.0) + 3.5, StartResponseTimer, _, TIMER_FLAG_NO_MAPCHANGE); - CreateTimer((tf_arena_preround_time - 10.0) + 9.1, StartBossTimer, _, TIMER_FLAG_NO_MAPCHANGE); - CreateTimer((tf_arena_preround_time - 10.0) + 9.6, MessageTimer, _, TIMER_FLAG_NO_MAPCHANGE); + CreateTimer(tf_arena_preround_time - 6.5, StartResponseTimer, _, TIMER_FLAG_NO_MAPCHANGE); + CreateTimer(tf_arena_preround_time - 0.9, StartBossTimer, _, TIMER_FLAG_NO_MAPCHANGE); + CreateTimer(tf_arena_preround_time - 0.4, MessageTimer, _, TIMER_FLAG_NO_MAPCHANGE); for(int entity=MaxClients+1; entity