]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Make notice slightly more pretty, suggestion from KingTarquin.
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Thu, 12 Feb 2009 12:08:15 +0000 (12:08 +0000)
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Thu, 12 Feb 2009 12:08:15 +0000 (12:08 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11089 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules/m_operlevels.cpp

index b32059e2303687f92d037731219d5f2bb898c6ca..65144307c14c44c138ea1affec62a7d005adb1de 100644 (file)
@@ -72,7 +72,7 @@ class ModuleOperLevels : public Module
                                if (dest_level > source_level)
                                {
                                        ServerInstance->SNO->WriteToSnoMask('A', "Oper %s (level %ld) attempted to /kill a higher oper: %s (level %ld): Reason: %s",source->nick.c_str(),source_level,dest->nick.c_str(),dest_level,reason.c_str());
-                                       dest->WriteServ("NOTICE %s :Oper %s attempted to /kill you!",dest->nick.c_str(),source->nick.c_str());
+                                       dest->WriteServ("NOTICE %s :*** Oper %s attempted to /kill you!",dest->nick.c_str(),source->nick.c_str());
                                        source->WriteNumeric(ERR_NOPRIVILEGES, "%s :Permission Denied - Oper %s is a higher level than you",source->nick.c_str(),dest->nick.c_str());
                                        return 1;
                                }