From ba42823d6303a9fc56e25a64e20abb0c237aa590 Mon Sep 17 00:00:00 2001 From: pigmonkey Date: Fri, 3 Jun 2011 18:22:59 -0400 Subject: [PATCH] Removed some more debug prints that I missed --- modules/announce.lua | 2 +- modules/battlegrounds.lua | 2 +- modules/miscellaneous.lua | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/announce.lua b/modules/announce.lua index a337078..0de9065 100644 --- a/modules/announce.lua +++ b/modules/announce.lua @@ -124,7 +124,7 @@ function mod:COMBAT_LOG_EVENT_UNFILTERED(_, timestamp, event, _, srcGUID, srcNam return end end - print(format("Warning: %s is not glyphed", spellName)) + self:Print(format("Warning: %s is not glyphed", spellName)) end end end diff --git a/modules/battlegrounds.lua b/modules/battlegrounds.lua index 26ca8cc..151af4c 100644 --- a/modules/battlegrounds.lua +++ b/modules/battlegrounds.lua @@ -29,7 +29,7 @@ local wgStatus = 0 local flagStatus = 0 function mod:OnInitialize() - self:RegisterOptions(options, defaults, function(d) db=d print(d) end) + self:RegisterOptions(options, defaults, function(d) db=d end) self:RegisterSlashCommand("ArathiPrint", "ab", "arathibasin") end diff --git a/modules/miscellaneous.lua b/modules/miscellaneous.lua index 3d9554f..8e0cdb8 100644 --- a/modules/miscellaneous.lua +++ b/modules/miscellaneous.lua @@ -38,7 +38,7 @@ local options = { } function mod:OnInitialize() - self:RegisterOptions(options, defaults, function(d) db=d print(d, db) end) + self:RegisterOptions(options, defaults, function(d) db=d end) self:RegisterSlashCommand("RollTally", "rt", "rolltally") self:RegisterSlashCommand("FindPhones", "phone") self:RegisterSlashCommand("ActiveTally", "at", "activetally")