summaryrefslogtreecommitdiff
path: root/src/config.cpp
diff options
context:
space:
mode:
authorCharles Kingsley <chaz@anope.org>2013-05-11 17:13:01 +0100
committerCharles Kingsley <chaz@anope.org>2013-05-11 17:13:01 +0100
commit1c36de5ab150d43b9caf377a409d71f857288509 (patch)
treed43ab717fb75a6e51d1670c72d59dd2559bc7a43 /src/config.cpp
parentda948be0897a980a6fdab305a8bdc0147913dce5 (diff)
Fix config to default prepend_channel true for fantasy
Diffstat (limited to 'src/config.cpp')
-rw-r--r--src/config.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.cpp b/src/config.cpp
index 5cddfb268..afadb401b 100644
--- a/src/config.cpp
+++ b/src/config.cpp
@@ -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);