1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 04:16:39 +02:00

Merge pull request #239 from SaberUK/2.0+set

Fix missing braces in cs_set.
This commit is contained in:
Adam
2019-03-05 08:10:04 -05:00
committed by GitHub
+2
View File
@@ -1024,11 +1024,13 @@ class CommandCSSetSuccessor : public Command
"channel will be dropped."));
unsigned max_reg = Config->GetModule("chanserv")->Get<unsigned>("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;
}
};