summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-05-23 15:40:56 +0100
committerSadie Powell <sadie@witchery.services>2024-05-23 15:40:56 +0100
commitaab3a8e5b6e843c1ea2e0bb1e72fc8d4acf45d6e (patch)
treefb053bfe73b74ecfa3b12004c5c249108ed0b409
parentc72e12d0a68a06871494a514f99d69ddccb16212 (diff)
Clarify that one non-deprecated protocol module must be loaded.
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 7ca404d7e..49b38dc22 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -536,7 +536,7 @@ bool Anope::Init(int ac, char **av)
auto *encryption = ModuleManager::FindFirstOf(ENCRYPTION);
if (!encryption)
- throw CoreException("You must load an encryption module!");
+ throw CoreException("You must load a non-deprecated encryption module!");
auto *protocol = ModuleManager::FindFirstOf(PROTOCOL);
if (!protocol)