]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setidle.cpp
Remove InspIRCd::WriteOpers in favour of snomask O
[user/henk/code/inspircd.git] / src / modules / m_setidle.cpp
index 10043c4e0920ef6e773cd46f3830a9453c89b7cd..bdad8bf8b5ff1847de8d8250dfe9e30535c2870b 100644 (file)
@@ -39,7 +39,7 @@ class CommandSetidle : public Command
                // minor tweak - we cant have signon time shorter than our idle time!
                if (user->signon > user->idle_lastmsg)
                        user->signon = user->idle_lastmsg;
-               ServerInstance->WriteOpers(std::string(user->nick)+" used SETIDLE to set their idle time to "+ConvToStr(idle)+" seconds");
+               ServerInstance->SNO->WriteToSnoMask('O', std::string(user->nick)+" used SETIDLE to set their idle time to "+ConvToStr(idle)+" seconds");
                user->WriteServ("944 %s :Idle time set.",user->nick);
 
                return CMD_LOCALONLY;