From 1678830c9ba20631784477b2d6052c75df830f05 Mon Sep 17 00:00:00 2001 From: Anonomit Date: Thu, 18 Jul 2024 01:43:21 -0400 Subject: [PATCH] Druids can no longer use polearms in Era --- ItemCache.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ItemCache.lua b/ItemCache.lua index fa8f981..9fdb97d 100644 --- a/ItemCache.lua +++ b/ItemCache.lua @@ -193,10 +193,10 @@ do if Addon.expansionLevel <= Addon.expansions.tbc then - usableTypes[weapon][subWeapon.Axe1H][ID.ROGUE] = nil - - -- druids can now use polearms in era - -- usableTypes[weapon][subWeapon.Polearm][ID.DRUID] = nil + usableTypes[weapon][subWeapon.Axe1H][ID.ROGUE] = nil + if not Addon.isSoD then + usableTypes[weapon][subWeapon.Polearm][ID.DRUID] = nil + end end local dualWielders = Addon:MakeLookupTable{ID.DEATHKNIGHT, ID.HUNTER, ID.ROGUE, ID.SHAMAN, ID.WARRIOR}