diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-05-11 18:09:22 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-05-11 18:09:22 +0000 |
commit | 9c3a20c15123c4812c236f33418c1fdfe74c3ff2 (patch) | |
tree | a498a0ef72af84819c7dff00d5b8a2c61d841f24 /src/modules/m_setidle.cpp | |
parent | e1f34688d6326a7b60d8044f8bfe8bbaeb464602 (diff) |
Last commit of that batch: Fix some returncodes (some stuff here really didn't need to be routed), clarify a few in comments, and also add some todos for myself next.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6978 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_setidle.cpp')
-rw-r--r-- | src/modules/m_setidle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_setidle.cpp b/src/modules/m_setidle.cpp index 255a55322..76a1ea3e5 100644 --- a/src/modules/m_setidle.cpp +++ b/src/modules/m_setidle.cpp @@ -45,7 +45,7 @@ class cmd_setidle : public command_t ServerInstance->WriteOpers(std::string(user->nick)+" used SETIDLE to set their idle time to "+ConvToStr(atoi(parameters[0]))+" seconds"); user->WriteServ("944 %s :Idle time set.",user->nick); - return CMD_SUCCESS; + return CMD_LOCALONLY; } }; |