From aab3a8e5b6e843c1ea2e0bb1e72fc8d4acf45d6e Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 23 May 2024 15:40:56 +0100 Subject: [PATCH] Clarify that one non-deprecated protocol module must be loaded. --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)