From 502b5bcf418a1c3b7c174eccc3cceda7e14d9790 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 17 Aug 2022 15:15:16 -0400 Subject: [PATCH] v1.4.0: fixed incorrect text after using scroll of identify --- .../shatteredpixeldungeon/items/scrolls/ScrollOfIdentify.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/ScrollOfIdentify.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/ScrollOfIdentify.java index 3911fe1f1..933c48817 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/ScrollOfIdentify.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/ScrollOfIdentify.java @@ -49,7 +49,7 @@ public class ScrollOfIdentify extends InventoryScroll { curUser.sprite.parent.add( new Identification( curUser.sprite.center().offset( 0, -16 ) ) ); item.identify(); - GLog.i( Messages.get(this, "it_is", item) ); + GLog.i( Messages.get(this, "it_is", item.title()) ); Badges.validateItemLevelAquired( item ); }