Skip to content

Commit

Permalink
Fixed version cvar not being added to A2S_RULES
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Minekus committed Mar 8, 2016
1 parent c46cc82 commit 74e7656
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/include/ircrelay.inc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#define IRC_REVERSE 22
#define IRC_UNDERLINE 31

#define IRC_VERSION "2.5.1"
#define IRC_VERSION "2.5.2"

enum IrcAccess
{
Expand Down
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/ircrelay.sp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max
public void OnPluginStart()
{
// Create convars
CreateConVar("sm_irc_version", IRC_VERSION, "IRC Relay for SourceMod");
CreateConVar("sm_irc_version", IRC_VERSION, "IRC Relay for SourceMod", FCVAR_NOTIFY);
g_hAuthPassword = CreateConVar("irc_auth_password", "", "IRC Auth Password");
g_hAuthString = CreateConVar("irc_auth_string", "", "IRC Auth String");
g_hAuthUsername = CreateConVar("irc_auth_username", "", "IRC Auth Username");
Expand Down

0 comments on commit 74e7656

Please sign in to comment.