diff options
| author | 2019-04-28 10:14:21 +0200 | |
|---|---|---|
| committer | 2019-04-28 09:14:21 +0100 | |
| commit | e57d1b19ff4823b7885eb7f4d3b37c84d2edca0e (patch) | |
| tree | 81e3825243464f332742b7e945053d32d726808b /src/modules/m_operlevels.cpp | |
| parent | Fix compatibility issues between sqloper and postgres (diff) | |
Textual improvements and fixes such as typos, casing, etc. (#1612)
Diffstat (limited to 'src/modules/m_operlevels.cpp')
| -rw-r--r-- | src/modules/m_operlevels.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_operlevels.cpp b/src/modules/m_operlevels.cpp index 2e02ffddf..11d5d0cee 100644 --- a/src/modules/m_operlevels.cpp +++ b/src/modules/m_operlevels.cpp @@ -27,7 +27,7 @@ class ModuleOperLevels : public Module public: Version GetVersion() CXX11_OVERRIDE { - return Version("Gives each oper type a 'level', cannot kill opers 'above' your level.", VF_VENDOR); + return Version("Gives each oper type a 'level', cannot kill opers 'above' your level", VF_VENDOR); } ModResult OnKill(User* source, User* dest, const std::string &reason) CXX11_OVERRIDE @@ -42,10 +42,10 @@ class ModuleOperLevels : public Module { if (IS_LOCAL(source)) { - ServerInstance->SNO->WriteGlobalSno('a', "Oper %s (level %lu) attempted to /kill a higher oper: %s (level %lu): Reason: %s", + ServerInstance->SNO->WriteGlobalSno('a', "Oper %s (level %lu) attempted to /KILL a higher level oper: %s (level %lu), reason: %s", source->nick.c_str(), source_level, dest->nick.c_str(), dest_level, reason.c_str()); } - dest->WriteNotice("*** Oper " + source->nick + " attempted to /kill you!"); + dest->WriteNotice("*** Oper " + source->nick + " attempted to /KILL you!"); source->WriteNumeric(ERR_NOPRIVILEGES, InspIRCd::Format("Permission Denied - Oper %s is a higher level than you", dest->nick.c_str())); return MOD_RES_DENY; } |
