v0.3.4: changed potion/scroll initials into icons

This commit is contained in:
Evan Debenham
2016-01-08 01:52:56 -05:00
committed by Evan Debenham
parent ff31a1f303
commit b29d71d2d8
29 changed files with 116 additions and 24 deletions
@@ -41,7 +41,7 @@ public abstract class Scroll extends Item {
protected static final float TIME_TO_READ = 1f;
protected String initials = Messages.get(this, "initials");
protected int initials;
private static final Class<?>[] scrolls = {
ScrollOfIdentify.class,
@@ -181,7 +181,7 @@ public abstract class Scroll extends Item {
Messages.get(this, "unknown_desc", rune());
}
public String initials(){
public Integer initials(){
return isKnown() ? initials : null;
}