From f724d4c2b9a52bf4171a407cf5c178ea9b03d338 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 10 May 2016 18:36:42 -0400 Subject: [PATCH] v0.4.0: fixed a capitalization error in burning --- .../shatteredpixeldungeon/actors/buffs/Burning.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Burning.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Burning.java index 95faee25b..aaa69043a 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Burning.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Burning.java @@ -86,7 +86,7 @@ public class Burning extends Buff implements Hero.Doom { if (item instanceof Scroll) { item = item.detach( hero.belongings.backpack ); - GLog.w( Messages.get(this, "burnsup", item.toString()) ); + GLog.w( Messages.get(this, "burnsup", Messages.capitalize(item.toString())) ); Heap.burnFX( hero.pos );