From 9c443e39907c0a9cb41510e72eb075f969f099a7 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 2 Dec 2024 12:20:15 -0500 Subject: [PATCH] v3.0.0: fixed holiday pasty names not appearing in catalogs --- .../shatteredpixeldungeon/windows/WndJournal.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();