v2.0.0: fixed unencumbered spirit working with brawler's stance

This commit is contained in:
Evan Debenham
2023-03-01 13:14:54 -05:00
parent 95d143e80e
commit 6d96af8937

View File

@@ -165,7 +165,8 @@ public class MonkEnergy extends Buff implements ActionIndicator.Action {
} }
} }
if (hero.belongings.weapon() instanceof MeleeWeapon){ if (hero.belongings.weapon() instanceof MeleeWeapon
&& hero.buff(RingOfForce.BrawlersStance.class) == null){
if (((MeleeWeapon) hero.belongings.weapon()).tier == 3 && points >= 1){ if (((MeleeWeapon) hero.belongings.weapon()).tier == 3 && points >= 1){
enGainMulti += 0.25f; enGainMulti += 0.25f;
} }