diff --git a/SpellActivationOverlay.toc b/SpellActivationOverlay.toc index fe7c376..d085a0d 100644 --- a/SpellActivationOverlay.toc +++ b/SpellActivationOverlay.toc @@ -1,8 +1,8 @@ ## Interface: 40400 -## Title: |TInterface/Icons/Spell_Frost_Stun:16:16:0:0:512:512:64:448:64:448|t SpellActivationOverlay |cffa2f3ff1.4.1|r +## Title: |TInterface/Icons/Spell_Frost_Stun:16:16:0:0:512:512:64:448:64:448|t SpellActivationOverlay |cffa2f3ff1.4.2|r ## Notes: Mimic Spell Activation Overlays from Modern World of Warcraft ## Author: Vinny/Ennvina -## Version: 1.4.1 +## Version: 1.4.2 ## SavedVariables: SpellActivationOverlayDB # SpellActivationOverlay.lua, SpellActivationOverlay.xml and all textures were created by Blizzard Entertainment, Inc. diff --git a/changelog.md b/changelog.md index 58b5a86..8fce5dd 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ ## SpellActivationOverlay Changelog +#### v1.4.3 (2024-05-11) + +Bug Fixes +- Unnecessary information was written to the game chat + #### v1.4.1 (2024-05-10) New effects: diff --git a/components/aura.lua b/components/aura.lua index 69a469c..082d774 100644 --- a/components/aura.lua +++ b/components/aura.lua @@ -73,7 +73,6 @@ function SAO.RegisterAura(self, name, stacks, spellID, texture, positions, scale end function SAO:MarkAura(spellID, count) -print("maring aura "..spellID.." with count "..count); if type(count) ~= 'number' then self:Debug(Module, "Marking aura of "..tostring(spellID).." with invalid count "..tostring(count)); end @@ -84,7 +83,6 @@ print("maring aura "..spellID.." with count "..count); end function SAO:UnmarkAura(spellID) -print("un-maring aura "..spellID.." which had count of "..tostring(self.AuraMarkers[spellID])); self.AuraMarkers[spellID] = nil; end