From f9911dde529adf3dc03f4f14bbd70756ac2f665c Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sun, 2 Mar 2025 14:51:02 +0000 Subject: Return references instead of pointers from the config system. We used to return NULL from these methods but now we return an empty block so this can never actually be null now. --- modules/help.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/help.cpp') diff --git a/modules/help.cpp b/modules/help.cpp index 117293373..ba559ca7f 100644 --- a/modules/help.cpp +++ b/modules/help.cpp @@ -44,8 +44,8 @@ public: Anope::string source_command = source.command; const BotInfo *bi = source.service; const CommandInfo::map &map = source.c ? Config->Fantasy : bi->commands; - bool hide_privileged_commands = Config->GetBlock("options")->Get("hideprivilegedcommands"), - hide_registered_commands = Config->GetBlock("options")->Get("hideregisteredcommands"); + bool hide_privileged_commands = Config->GetBlock("options").Get("hideprivilegedcommands"), + hide_registered_commands = Config->GetBlock("options").Get("hideregisteredcommands"); if (params.empty() || params[0].equals_ci("ALL")) { -- cgit