From 170ab71ba1cf8c6dd9bc09bc26ad454f1385999e Mon Sep 17 00:00:00 2001 From: Daniel De Graaf Date: Fri, 30 Jul 2010 14:34:11 -0400 Subject: Fix incorrect default on --- src/modules/m_alias.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp index c7f0da690..33f877a57 100644 --- a/src/modules/m_alias.cpp +++ b/src/modules/m_alias.cpp @@ -82,8 +82,8 @@ class ModuleAlias : public Module tag->readString("replace", a.ReplaceFormat, true); a.RequiredNick = tag->getString("requires"); a.ULineOnly = tag->getBool("uline"); - a.ChannelCommand = tag->getBool("channelcommand", "no"); - a.UserCommand = tag->getBool("usercommand", "yes"); + a.ChannelCommand = tag->getBool("channelcommand", false); + a.UserCommand = tag->getBool("usercommand", true); a.OperOnly = tag->getBool("operonly"); a.format = tag->getString("format"); a.CaseSensitive = tag->getBool("matchcase"); -- cgit v1.2.3