diff options
| author | 2021-08-29 01:48:27 +0100 | |
|---|---|---|
| committer | 2021-08-29 01:48:27 +0100 | |
| commit | 79b7d484274126390b62d44aff9f795581e4d7b8 (patch) | |
| tree | 7b96617a2dd7bc25865a8e37f514dde10fbf3fc8 /src/modules/m_remove.cpp | |
| parent | Make the protocol version enum entries slightly less verbose. (diff) | |
Fix some places where U-line -> service was missed.
Diffstat (limited to 'src/modules/m_remove.cpp')
| -rw-r--r-- | src/modules/m_remove.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index 36976bcb7..46a39d3e2 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -100,7 +100,7 @@ class RemoveBase : public Command if (target->server->IsService()) { - user->WriteNumeric(ERR_CHANOPRIVSNEEDED, channame, "Only a U-line may remove a U-line from a channel."); + user->WriteNumeric(ERR_CHANOPRIVSNEEDED, channame, "Only a service may remove a service from a channel."); return CmdResult::FAILURE; } |
