I got 2 shaman on lvl 84 they are using the SIngular class... i send them with the 1-525 gatherbuddy profile to skill herbing,mining.. So sometimes after they loot an ore or herb they just stand there and spawn Fire tongue every 2 seconds until i walk some steps and mount onto an mount than it continues farmign for antoer 1 hour...
This appears to be due to changes introduced to the Shaman class-specific PreCombatBuffs code. Before: Code: ret => !Item.HasWeaponImbue(WoWInventorySlot.MainHand, "Flametongue") && SpellManager.HasSpell("Flametongue Weapon") && SpellManager.CanCast("Flametongue Weapon", null, false, false) After: Code: ret => StyxWoW.Me.Inventory.Equipped.MainHand.TemporaryEnchantment.Id != 283 && StyxWoW.Me.Inventory.Equipped.MainHand.ItemInfo.WeaponClass != WoWItemWeaponClass.FishingPole && SpellManager.HasSpell("Flametongue Weapon") && SpellManager.CanCast("Flametongue Weapon", null, false, false) -Alpha