diff options
Diffstat (limited to 'modules/help.cpp')
-rw-r--r-- | modules/help.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<bool>("hideprivilegedcommands"), - hide_registered_commands = Config->GetBlock("options")->Get<bool>("hideregisteredcommands"); + bool hide_privileged_commands = Config->GetBlock("options").Get<bool>("hideprivilegedcommands"), + hide_registered_commands = Config->GetBlock("options").Get<bool>("hideregisteredcommands"); if (params.empty() || params[0].equals_ci("ALL")) { |