v0.4.0: adjusted identification messages

This commit is contained in:
Evan Debenham
2016-06-07 17:08:55 -04:00
committed by Evan Debenham
parent f20130de0f
commit 9128b3ebe3
4 changed files with 7 additions and 7 deletions
@@ -247,7 +247,7 @@ public class Armor extends EquipableItem {
if (!levelKnown) {
if (--hitsToKnow <= 0) {
levelKnown = true;
GLog.w( Messages.get(Armor.class, "identify", name(), toString()) );
GLog.w( Messages.get(Armor.class, "identify") );
Badges.validateItemLevelAquired( this );
}
}
@@ -280,7 +280,7 @@ public class Ring extends KindofMisc {
if (!isIdentified() && --ticksToKnow <= 0) {
String gemName = name();
identify();
GLog.w( Messages.get(Ring.class, "identify", gemName, Ring.this.toString()) );
GLog.w( Messages.get(Ring.class, "identify", Ring.this.toString()) );
Badges.validateItemLevelAquired( Ring.this );
}
@@ -80,7 +80,7 @@ abstract public class Weapon extends KindOfWeapon {
if (!levelKnown) {
if (--hitsToKnow <= 0) {
levelKnown = true;
GLog.i( Messages.get(Weapon.class, "identify", name(), toString()) );
GLog.i( Messages.get(Weapon.class, "identify") );
Badges.validateItemLevelAquired( this );
}
}