1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 19:36:39 +02:00

Fixed a crash in /cs help register

This commit is contained in:
Adam
2011-03-13 14:03:02 -04:00
parent 3fbf39b25d
commit b75fa1c6ec
+1 -1
View File
@@ -117,7 +117,7 @@ class CommandCSRegister : public Command
"NOTICE: In order to register a channel, you must have\n"
"first registered your nickname. If you haven't,\n"
"\002%R%s HELP\002 for information on how to do so."),
ChanServ->nick.c_str(), ChanServ->nick.c_str(), ChanServ->nick.c_str());
ChanServ->nick.c_str(), ChanServ->nick.c_str(), ChanServ->nick.c_str(), ChanServ->nick.c_str());
return true;
}