diff options
Diffstat (limited to 'src/modules/m_remove.cpp')
| -rw-r--r-- | src/modules/m_remove.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index a418e6625..9646873b5 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -82,7 +82,7 @@ public: if (!channel->HasUser(target)) { - user->WriteNotice(INSP_FORMAT("*** User {} is not on channel {}", target->nick, channel->name)); + user->WriteNotice("*** User {} is not on channel {}", target->nick, channel->name); return CmdResult::FAILURE; } @@ -135,7 +135,7 @@ public: } else { - user->WriteNotice(INSP_FORMAT("*** You do not have access to /REMOVE {} from {}", target->nick, channel->name)); + user->WriteNotice("*** You do not have access to /REMOVE {} from {}", target->nick, channel->name); return CmdResult::FAILURE; } } |
