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")