diff options
author | Peter Powell <petpow@saberuk.com> | 2019-11-18 13:59:37 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-12-14 17:53:42 +0000 |
commit | ff0109d6bacec36fe40c3806e3ddca30ddc6ad62 (patch) | |
tree | 4b8e0c706b3a3091847cc78f3c11adce99011e48 /modules/protocol/inspircd3.cpp | |
parent | 059c78aee39d36536078f606c853e29214196b85 (diff) |
inspircd3: Refer to modules using without a prefix/suffix.
Diffstat (limited to 'modules/protocol/inspircd3.cpp')
-rw-r--r-- | modules/protocol/inspircd3.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/protocol/inspircd3.cpp b/modules/protocol/inspircd3.cpp index 49c26f505..b7b2fce16 100644 --- a/modules/protocol/inspircd3.cpp +++ b/modules/protocol/inspircd3.cpp @@ -1146,15 +1146,15 @@ struct IRCDMessageCapab : Message::Capab { if (!Servers::Capab.count("SERVICES")) { - UplinkSocket::Message() << "ERROR :m_services_account.so is not loaded. This is required by Anope"; - Anope::QuitReason = "ERROR: Remote server does not have the m_services_account module loaded, and this is required."; + UplinkSocket::Message() << "ERROR :The services_account module is not loaded. This is required by Anope"; + Anope::QuitReason = "ERROR: Remote server does not have the services_account module loaded, and this is required."; Anope::Quitting = true; return; } if (!ModeManager::FindUserModeByName("PRIV")) { - UplinkSocket::Message() << "ERROR :m_hidechans.so is not loaded. This is required by Anope"; - Anope::QuitReason = "ERROR: Remote server does not have the m_hidechans module loaded, and this is required."; + UplinkSocket::Message() << "ERROR :The hidechans module is not loaded. This is required by Anope"; + Anope::QuitReason = "ERROR: Remote server does not have the hidechans module loaded, and this is required."; Anope::Quitting = true; return; } |