Bugfix in keepnick: PutUser() vs PutModule() screwup

Sorry, my bad.
Thanks to SilverLeo for finding and fixing this.


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1203 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2008-09-14 06:05:23 +00:00
parent 57f4288c00
commit 258793168b
+3 -3
View File
@@ -135,11 +135,11 @@ public:
PutModule("No longer trying to get your primary nick");
} else if (sCmd == "STATE") {
if (m_pTimer)
PutUser("Currently trying to get your primary nick");
PutModule("Currently trying to get your primary nick");
else
PutUser("Currently disabled, try 'enable'");
PutModule("Currently disabled, try 'enable'");
} else {
PutUser("Commands: Enable, Disable, State");
PutModule("Commands: Enable, Disable, State");
}
}