diff --git a/core/src/main/assets/messages/items/items.properties b/core/src/main/assets/messages/items/items.properties index 0a44b1a40..774bb29ea 100644 --- a/core/src/main/assets/messages/items/items.properties +++ b/core/src/main/assets/messages/items/items.properties @@ -210,9 +210,9 @@ items.artifacts.driedrose.desc=Is this the rose that the ghost mentioned before items.artifacts.driedrose.desc_no_quest=A dried aged rose that is somehow still holding together despite its age.\n\nIt seems to have some spiritual power, but you have no idea how to use it right now. items.artifacts.driedrose.desc_hint=It seems to be missing some petals. Perhaps reattaching them will strengthen the rose. items.artifacts.driedrose.desc_cursed=The cursed rose is bound to your hand, it feels eerily cold. -items.artifacts.driedrose.desc_weapon=Ghost's weapon: %s. -items.artifacts.driedrose.desc_armor=Ghost's armor: %s. -items.artifacts.driedrose.desc_str=Ghost's strength: %s. +items.artifacts.driedrose.desc_weapon=Ghost's weapon: %s +items.artifacts.driedrose.desc_armor=Ghost's armor: %s +items.artifacts.driedrose.desc_strength=Ghost's strength: %s items.artifacts.driedrose$petal.name=dried petal items.artifacts.driedrose$petal.no_rose=You have no rose to add this petal to. items.artifacts.driedrose$petal.no_room=There is no room left for this petal, so you discard it. diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java index 57b1476bd..c652c2dc1 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java @@ -246,11 +246,11 @@ public class DriedRose extends Artifact { desc += "\n"; if (weapon != null) { - desc += "\n" + Messages.get(this, "desc_weapon", weapon.title()); + desc += "\n" + Messages.get(this, "desc_weapon", Messages.titleCase(weapon.title())); } if (armor != null) { - desc += "\n" + Messages.get(this, "desc_armor", armor.title()); + desc += "\n" + Messages.get(this, "desc_armor", Messages.titleCase(armor.title())); } desc += "\n" + Messages.get(this, "desc_strength", ghostStrength());