1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 06:33:13 +02:00

Fix config to default prepend_channel true for fantasy

This commit is contained in:
Charles Kingsley
2013-05-11 17:13:01 +01:00
parent da948be089
commit 1c36de5ab1
+1 -1
View File
@@ -447,7 +447,7 @@ Conf::Conf() : Block("")
&permission = fantasy->Get<const Anope::string>("permission"),
&group = fantasy->Get<const Anope::string>("group");
bool hide = fantasy->Get<bool>("hide"),
prepend_channel = fantasy->Get<bool>("prepend_channel");
prepend_channel = fantasy->Get<bool>("prepend_channel", "yes");
ValidateNotEmpty("fantasy", "name", nname);
ValidateNotEmpty("fantasy", "command", service);