From cc0524c37b7458cd0e35e6e846e5e5ac20c768b9 Mon Sep 17 00:00:00 2001 From: vigo Date: Mon, 22 Apr 2024 09:21:55 +0200 Subject: [PATCH] [shaman] Fix Way of Earth precons --- sim/shaman/runes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim/shaman/runes.go b/sim/shaman/runes.go index ccba4ec287..58bbc66f92 100644 --- a/sim/shaman/runes.go +++ b/sim/shaman/runes.go @@ -319,7 +319,7 @@ func (shaman *Shaman) applyWayOfEarth() { } // Way of Earth only activates if you have Rockbiter Weapon on your mainhand and a shield in your offhand - if shaman.Consumes.MainHandImbue != proto.WeaponImbue_RockbiterWeapon && shaman.OffHand().WeaponType != proto.WeaponType_WeaponTypeShield { + if shaman.Consumes.MainHandImbue != proto.WeaponImbue_RockbiterWeapon || shaman.OffHand().WeaponType != proto.WeaponType_WeaponTypeShield { return }