v2.0.0: fixed ring of force not including ability desc in journal

This commit is contained in:
Evan Debenham
2023-02-21 15:48:11 -05:00
parent b92ff9f383
commit 614152d792

View File

@@ -184,7 +184,7 @@ public class RingOfForce extends Ring {
String info = super.info();
if (Dungeon.hero.heroClass == HeroClass.DUELIST
&& (isIdentified() || isEquipped(Dungeon.hero))){
&& (anonymous || isIdentified() || isEquipped(Dungeon.hero))){
info += "\n\n" + Messages.get(this, "ability_desc");
}