v0.3.4: externalized a couple buff strings I missed

This commit is contained in:
Evan Debenham
2016-01-06 03:23:02 -05:00
committed by Evan Debenham
parent 2d96bfd8a4
commit e8ad29ef41
4 changed files with 11 additions and 12 deletions
@@ -47,7 +47,6 @@ import com.watabou.utils.Random;
public class Burning extends Buff implements Hero.Doom {
private static final String TXT_BURNS_UP = "%s burns up!";
private static final String TXT_BURNED_TO_DEATH = "You burned to death...";
private static final float DURATION = 8f;
@@ -88,7 +87,7 @@ public class Burning extends Buff implements Hero.Doom {
if (item instanceof Scroll) {
item = item.detach( hero.belongings.backpack );
GLog.w( TXT_BURNS_UP, item.toString() );
GLog.w( Messages.get(this, "burnsup", item.toString()) );
Heap.burnFX( hero.pos );
@@ -99,7 +98,7 @@ public class Burning extends Buff implements Hero.Doom {
if (!steak.collect( hero.belongings.backpack )) {
Dungeon.level.drop( steak, hero.pos ).sprite.drop();
}
GLog.w( TXT_BURNS_UP, item.toString() );
GLog.w( Messages.get(this, "burnsup", item.toString()) );
Heap.burnFX( hero.pos );
@@ -172,6 +171,6 @@ public class Burning extends Buff implements Hero.Doom {
Badges.validateDeathFromFire();
Dungeon.fail( ResultDescriptions.BURNING );
GLog.n( TXT_BURNED_TO_DEATH );
GLog.n( Messages.get(this, "ondeath") );
}
}