From 5e59891249607c8c9cbd74b4be82eea90b9f6535 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 15 Sep 2023 13:42:36 -0400 Subject: [PATCH] v2.2.0: fixed ring on-ID text being inconsistent with other equipment --- core/src/main/assets/messages/items/items.properties | 2 +- .../shatteredpixel/shatteredpixeldungeon/items/rings/Ring.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/assets/messages/items/items.properties b/core/src/main/assets/messages/items/items.properties index a34aec400..bb01953e9 100644 --- a/core/src/main/assets/messages/items/items.properties +++ b/core/src/main/assets/messages/items/items.properties @@ -874,7 +874,7 @@ items.rings.ring.agate=agate ring items.rings.ring.equip_cursed=The ring tightens around your finger painfully! items.rings.ring.unknown_desc=This metal band is adorned with a large gem that glitters in the darkness. Who knows what effect it has when worn? items.rings.ring.known=This is a %s -items.rings.ring.identify=You are now familiar enough with your ring to identify it. It is a %s. +items.rings.ring.identify=You are now familiar enough with your ring to identify it. items.rings.ring.cursed_worn=Because this ring is cursed, you are powerless to remove it. items.rings.ring.curse_known=You can feel a malevolent magic lurking within this ring. items.rings.ring.not_cursed=This ring is free of malevolent magic. diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/Ring.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/Ring.java index 0e551c8c9..77c154db0 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/Ring.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/Ring.java @@ -289,7 +289,7 @@ public class Ring extends KindofMisc { levelsToID -= levelPercent; if (levelsToID <= 0){ identify(); - GLog.p( Messages.get(Ring.class, "identify", title()) ); + GLog.p( Messages.get(Ring.class, "identify") ); Badges.validateItemLevelAquired( this ); } }