Skip to content

Commit 74e7656

Browse files
author
Erik Minekus
committed
Fixed version cvar not being added to A2S_RULES
1 parent c46cc82 commit 74e7656

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

addons/sourcemod/scripting/include/ircrelay.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#define IRC_REVERSE 22
1515
#define IRC_UNDERLINE 31
1616

17-
#define IRC_VERSION "2.5.1"
17+
#define IRC_VERSION "2.5.2"
1818

1919
enum IrcAccess
2020
{

addons/sourcemod/scripting/ircrelay.sp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max
9595
public void OnPluginStart()
9696
{
9797
// Create convars
98-
CreateConVar("sm_irc_version", IRC_VERSION, "IRC Relay for SourceMod");
98+
CreateConVar("sm_irc_version", IRC_VERSION, "IRC Relay for SourceMod", FCVAR_NOTIFY);
9999
g_hAuthPassword = CreateConVar("irc_auth_password", "", "IRC Auth Password");
100100
g_hAuthString = CreateConVar("irc_auth_string", "", "IRC Auth String");
101101
g_hAuthUsername = CreateConVar("irc_auth_username", "", "IRC Auth Username");

0 commit comments

Comments
 (0)