From f22939b97912dc1e00ef0d68924f5f4d8d2c8300 Mon Sep 17 00:00:00 2001 From: "Casper V. Kristensen" Date: Sun, 18 Oct 2020 23:26:04 +0200 Subject: [PATCH] 3pT2BS: Don't automatically switch back to normal gear immediately after casting Battle Shout, to avoid no BS being cast due to batched/slow ticking rage generation. --- 3pT2BS/3pT2BS.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3pT2BS/3pT2BS.lua b/3pT2BS/3pT2BS.lua index 19074f5..d92b7f9 100644 --- a/3pT2BS/3pT2BS.lua +++ b/3pT2BS/3pT2BS.lua @@ -49,7 +49,7 @@ button:SetScript("PreClick", function (self, button, down) if not has3pT2() then return self:SetAttribute("macrotext", actions.putWrathOn) end - return self:SetAttribute("macrotext", actions.castBattleShout .. actions.takeWrathOff) + return self:SetAttribute("macrotext", actions.castBattleShout) end)