v0.3.5: fixed various naming and string errors

This commit is contained in:
Evan Debenham
2016-04-21 19:19:01 -04:00
parent bf04f7d8d1
commit 01f957f70f
6 changed files with 22 additions and 22 deletions
@@ -86,11 +86,11 @@ public class Berserk extends Buff {
public boolean berserking(){
if (target.HP == 0 && state == State.NORMAL){
WarriorShield sigil = target.buff(WarriorShield.class);
if (sigil != null){
WarriorShield shield = target.buff(WarriorShield.class);
if (shield != null){
state = State.BERSERK;
BuffIndicator.refreshHero();
target.SHLD = sigil.maxShield() * 5;
target.SHLD = shield.maxShield() * 5;
SpellSprite.show(target, SpellSprite.BERSERK);
Sample.INSTANCE.play( Assets.SND_CHALLENGE );