diff options
author | Charles Kingsley <chaz@anope.org> | 2013-05-11 17:13:01 +0100 |
---|---|---|
committer | Charles Kingsley <chaz@anope.org> | 2013-05-11 17:13:01 +0100 |
commit | 1c36de5ab150d43b9caf377a409d71f857288509 (patch) | |
tree | d43ab717fb75a6e51d1670c72d59dd2559bc7a43 /src | |
parent | da948be0897a980a6fdab305a8bdc0147913dce5 (diff) |
Fix config to default prepend_channel true for fantasy
Diffstat (limited to 'src')
-rw-r--r-- | src/config.cpp | 2 |
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); |