diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndJournal.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndJournal.java index 7a98dad1f..c2b8c70c6 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndJournal.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndJournal.java @@ -770,7 +770,7 @@ public class WndJournal extends WndTabbed { title = "???"; desc = Messages.get(CatalogTab.class, "not_seen_item"); } else { - title = Messages.titleCase(item.trueName()); + title = Messages.titleCase( item.name() ); //some items don't include direct stats, generally when they're not applicable if (item instanceof ClassArmor || item instanceof SpiritBow){ desc += item.desc();