From 56913d7a41f7ba54ed841a681f3416652a4c957e Mon Sep 17 00:00:00 2001 From: zombie343 Date: Tue, 17 Jul 2018 01:23:23 -0400 Subject: [PATCH] 1.04 - Correcting default value for _SafeMode to False --- src/MultiSend/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MultiSend/Main.cpp b/src/MultiSend/Main.cpp index a2c5f1e..8771999 100644 --- a/src/MultiSend/Main.cpp +++ b/src/MultiSend/Main.cpp @@ -86,7 +86,7 @@ bool MultiSend::Initialize(IAshitaCore* core, ILogManager* log, uint32_t id) _Debug = false; //SafeMode enabled by Default (to avoid accidental chatlog spam): //Allows for prepend of "/echo " to commands that are missing a leading "/". - _SafeMode = true; + _SafeMode = false; this->Start();