V0.2.0: Tiny correction in Horn of Plenty

This commit is contained in:
Evan Debenham 2014-09-08 10:42:07 -04:00
parent 0c06bd0719
commit 33a6533d08

View File

@ -54,7 +54,7 @@ public class HornOfPlenty extends Artifact {
ArrayList<String> actions = super.actions( hero );
if (isEquipped( hero ) && charge > 0)
actions.add(AC_EAT);
if (isEquipped( hero ) && level < 150)
if (isEquipped( hero ) && level < 30)
actions.add(AC_STORE);
return actions;
}