diff --git a/ByeByeBuffs/ByeByeBuffs.lua b/ByeByeBuffs/ByeByeBuffs.lua index 77bafe4..c703d0e 100644 --- a/ByeByeBuffs/ByeByeBuffs.lua +++ b/ByeByeBuffs/ByeByeBuffs.lua @@ -50,10 +50,7 @@ frame:RegisterEvent("PLAYER_ENTERING_WORLD") frame:SetScript("OnEvent", function(self, event, ...) local isWorldBuffed = IsInRaid() and UnitAura("player", 18, "HELPFUL") -- simply checks for more than 18 buffs if isWorldBuffed then - print(("%s: World-buffed."):format(ByeByeBuffs.title)) return button:SetAttribute("macrotext", cancelBlacklistedAurasMacro) end - print(("%s: not World-buffed."):format(ByeByeBuffs.title)) return button:SetAttribute("macrotext", "/stopmacro") - end)