diff --git a/plugins/l4d2_crescendo_control.smx b/plugins/l4d2_crescendo_control.smx index 5c77759..5e1042b 100644 Binary files a/plugins/l4d2_crescendo_control.smx and b/plugins/l4d2_crescendo_control.smx differ diff --git a/scripting/l4d2_crescendo_control.sp b/scripting/l4d2_crescendo_control.sp index 2fd995f..1a409fa 100644 --- a/scripting/l4d2_crescendo_control.sp +++ b/scripting/l4d2_crescendo_control.sp @@ -53,9 +53,9 @@ public void Event_GamemodeChange(ConVar cvar, const char[] oldValue, const char[ public void OnMapStart() { - if(!StrEqual(gamemode, "tankrun")) { + if(StrEqual(gamemode, "coop")) { HookEntityOutput("func_button", "OnPressed", Event_ButtonPress); - CreateTimer(0.3, Timer_GetFlows, _, TIMER_REPEAT | TIMER_FLAG_NO_MAPCHANGE); + CreateTimer(1.0, Timer_GetFlows, _, TIMER_REPEAT | TIMER_FLAG_NO_MAPCHANGE); } }