From 1c36de5ab150d43b9caf377a409d71f857288509 Mon Sep 17 00:00:00 2001 From: Charles Kingsley Date: Sat, 11 May 2013 17:13:01 +0100 Subject: [PATCH] Fix config to default prepend_channel true for fantasy --- src/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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("permission"), &group = fantasy->Get("group"); bool hide = fantasy->Get("hide"), - prepend_channel = fantasy->Get("prepend_channel"); + prepend_channel = fantasy->Get("prepend_channel", "yes"); ValidateNotEmpty("fantasy", "name", nname); ValidateNotEmpty("fantasy", "command", service);