From 74acf5c0728fbef433f13558e472d5ed4d252682 Mon Sep 17 00:00:00 2001 From: KyrosKrane Date: Thu, 9 Jul 2015 22:45:34 +0400 Subject: [PATCH] Internal debug message fix --- AnnoyingPopupRemover.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AnnoyingPopupRemover.lua b/AnnoyingPopupRemover.lua index e775d6b..a929ba9 100644 --- a/AnnoyingPopupRemover.lua +++ b/AnnoyingPopupRemover.lua @@ -199,10 +199,10 @@ function APR:HandleCommandLine(msg, editbox) -- Undocumented command to toggle the debug state from the command line. elseif "debug" == Line[1] then if "on" == Line[2] then - SetDebug(true); + APR:SetDebug(true); return; elseif "off" == Line[2] then - SetDebug(false); + APR:SetDebug(false); return; end end -- 1.7.9.5