v0.4.0: adjusted identification messages
This commit is contained in:
committed by
Evan Debenham
parent
f20130de0f
commit
9128b3ebe3
@@ -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 );
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user