]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setname.cpp
Commit patch from danieldg that makes a ton of stuff const-safe for latest warn-happy...
[user/henk/code/inspircd.git] / src / modules / m_setname.cpp
index 4bf1f17b2ea3114acd1d48b0b3c8dddb55d92198..d0dce6c77956d1202466098bf82d8a33215931dd 100644 (file)
@@ -43,7 +43,7 @@ class CommandSetname : public Command
                
                if (user->ChangeName(parameters[0]))
                {
-                       ServerInstance->SNO->WriteToSnoMask('O', "%s used SETNAME to change their GECOS to %s", user->nick, parameters[0]);
+                       ServerInstance->SNO->WriteToSnoMask('A', "%s used SETNAME to change their GECOS to %s", user->nick, parameters[0]);
                        return CMD_SUCCESS;
                }