From dc574ffc07fb997f92453d2c3392941f542e8ce6 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 11 Oct 2019 23:01:48 -0400 Subject: [PATCH] v0.7.5b: corrected capitalization on Tengu's traps --- .../shatteredpixeldungeon/levels/NewPrisonBossLevel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/NewPrisonBossLevel.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/NewPrisonBossLevel.java index a1e6ea59a..9ac559fca 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/NewPrisonBossLevel.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/NewPrisonBossLevel.java @@ -765,7 +765,7 @@ public class NewPrisonBossLevel extends Level { public String name(int tileX, int tileY) { int cell = (this.tileX+tileX) + Dungeon.level.width()*(this.tileY+tileY); if (Dungeon.level.traps.get(cell) != null){ - return Dungeon.level.traps.get(cell).name; + return Messages.titleCase(Dungeon.level.traps.get(cell).name); } return super.name(tileX, tileY); }