Skip to content

Commit

Permalink
Reduce default effect interval to 30 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikusch committed Dec 22, 2023
1 parent d336a3a commit 7daa4ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/sourcemod/scripting/chaos.sp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <vscript>
#include <morecolors>

#define PLUGIN_VERSION "1.5.1"
#define PLUGIN_VERSION "1.5.2"

ConVar sm_chaos_enabled;
ConVar sm_chaos_effect_cooldown;
Expand Down Expand Up @@ -113,7 +113,7 @@ public void OnPluginStart()
sm_chaos_enabled = CreateConVar("sm_chaos_enabled", "1", "Enable or disable the plugin.");
sm_chaos_enabled.AddChangeHook(ConVarChanged_ChaosEnable);
sm_chaos_effect_cooldown = CreateConVar("sm_chaos_effect_cooldown", "50", "Default cooldown between effects.");
sm_chaos_effect_interval = CreateConVar("sm_chaos_effect_interval", "45", "Interval between each effect activation, in seconds.");
sm_chaos_effect_interval = CreateConVar("sm_chaos_effect_interval", "30", "Interval between each effect activation, in seconds.");
sm_chaos_meta_effect_interval = CreateConVar("sm_chaos_meta_effect_interval", "40", "Interval between each attempted meta effect activation, in seconds.");
sm_chaos_meta_effect_chance = CreateConVar("sm_chaos_meta_effect_chance", ".025", "Chance for a meta effect to be activated every interval, in percent.");
sm_chaos_effect_update_interval = CreateConVar("sm_chaos_effect_update_interval", ".1", "Interval at which effect update functions should be called, in seconds.");
Expand Down

0 comments on commit 7daa4ea

Please sign in to comment.