diff --git a/valve/addons/amxmodx/scripting/agmodx_ctf.sma b/valve/addons/amxmodx/scripting/agmodx_ctf.sma index 01e939d..bf09d29 100644 --- a/valve/addons/amxmodx/scripting/agmodx_ctf.sma +++ b/valve/addons/amxmodx/scripting/agmodx_ctf.sma @@ -132,7 +132,7 @@ new gCvarStealPoints; // the amount of points the stealer gets. new gCvarCarrierKillPoints; // the amount of points the killer gets. new gCvarReturnPoints; // the amount of points the returner gets. new gCvarFlagReturnTime; // the time that a dropped flag lays in the world before respawning. -new gCvarFlagDelayTime; +new gCvarFlagDelayTime; // the time required to allow players to touch a flag after it respawns. public plugin_precache() { register_plugin(PLUGIN, AGMODX_VERSION, AUTHOR); @@ -158,7 +158,7 @@ public plugin_precache() { gCvarStealPoints = create_cvar("sv_ag_ctf_stealpoints", "1"); gCvarCarrierKillPoints = create_cvar("sv_ag_ctf_carrierkillpoints", "1"); gCvarFlagReturnTime = create_cvar("sv_ag_ctf_flag_resettime", "30"); - gCvarFlagDelayTime = create_cvar("sv_ag_ctf_flag_delaytime", "3"); + gCvarFlagDelayTime = create_cvar("sv_ag_ctf_flag_delaytime", "1"); } public plugin_cfg() {