]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setident.cpp
Remove CMD_LOCALONLY, enforce use of GetRouting for routed commands
[user/henk/code/inspircd.git] / src / modules / m_setident.cpp
index 03d5f69f9a5719363a50525fc4ac44c95ddb2574..64fd0a6899917ecc105673e77442c1bb9472b12f 100644 (file)
@@ -49,7 +49,7 @@ class CommandSetident : public Command
                user->ChangeIdent(parameters[0].c_str());
                ServerInstance->SNO->WriteGlobalSno('a', "%s used SETIDENT to change their ident to '%s'", user->nick.c_str(), user->ident.c_str());
 
-               return CMD_LOCALONLY;
+               return CMD_SUCCESS;
        }
 };