v0.7.0: fixed shield not updating when warrior's shield is supercharged

This commit is contained in:
Evan Debenham 2018-10-13 16:12:52 -04:00
parent b419e62b8a
commit 989e46e445

View File

@ -127,6 +127,7 @@ public class BrokenSeal extends Item {
public synchronized void supercharge(int maxShield){ public synchronized void supercharge(int maxShield){
if (maxShield > shielding){ if (maxShield > shielding){
shielding = maxShield; shielding = maxShield;
target.needsShieldUpdate = true;
} }
} }