From eb66f9eda030b1692b19d5d60e7e2c79cbec74bb Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Tue, 5 Mar 2019 11:29:45 +0000 Subject: Fix missing braces in cs_set. --- modules/commands/cs_set.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modules/commands/cs_set.cpp') diff --git a/modules/commands/cs_set.cpp b/modules/commands/cs_set.cpp index 07352fceb..cd1b06ab1 100644 --- a/modules/commands/cs_set.cpp +++ b/modules/commands/cs_set.cpp @@ -1024,11 +1024,13 @@ class CommandCSSetSuccessor : public Command "channel will be dropped.")); unsigned max_reg = Config->GetModule("chanserv")->Get("maxregistered"); if (max_reg) + { source.Reply(" "); source.Reply(_("Note, however, if the successor already has too many\n" "channels registered (%d), they will not be able to\n" "become the new founder and it will be as if the\n" "channel had no successor set."), max_reg); + } return true; } }; -- cgit