v2.2.0: fixed ring on-ID text being inconsistent with other equipment

This commit is contained in:
Evan Debenham
2023-09-15 13:42:36 -04:00
parent 64d6c84f97
commit 5e59891249
2 changed files with 2 additions and 2 deletions

View File

@@ -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.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.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.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.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.curse_known=You can feel a malevolent magic lurking within this ring.
items.rings.ring.not_cursed=This ring is free of malevolent magic. items.rings.ring.not_cursed=This ring is free of malevolent magic.

View File

@@ -289,7 +289,7 @@ public class Ring extends KindofMisc {
levelsToID -= levelPercent; levelsToID -= levelPercent;
if (levelsToID <= 0){ if (levelsToID <= 0){
identify(); identify();
GLog.p( Messages.get(Ring.class, "identify", title()) ); GLog.p( Messages.get(Ring.class, "identify") );
Badges.validateItemLevelAquired( this ); Badges.validateItemLevelAquired( this );
} }
} }