diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java index 0c77dd069..6fe7a537c 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java @@ -66,7 +66,7 @@ public class ChaliceOfBlood extends Artifact { if (damage > hero.HP*0.75) { GameScene.show( - new WndOptions(Messages.get(this, "name"), + new WndOptions(Messages.titleCase(Messages.get(this, "name")), Messages.get(this, "prick_warn"), Messages.get(this, "yes"), Messages.get(this, "no")) { diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndResurrect.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndResurrect.java index d3de621da..eb9cb896c 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndResurrect.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndResurrect.java @@ -52,7 +52,7 @@ public class WndResurrect extends Window { IconTitle titlebar = new IconTitle(); titlebar.icon( new ItemSprite( ankh.image(), null ) ); - titlebar.label( ankh.name() ); + titlebar.label( Messages.titleCase(ankh.name()) ); titlebar.setRect( 0, 0, WIDTH, 0 ); add( titlebar );