From 33a6533d08af3b836a627b16f56265b1860aab64 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 8 Sep 2014 10:42:07 -0400 Subject: [PATCH] V0.2.0: Tiny correction in Horn of Plenty --- .../shatteredpixeldungeon/items/artifacts/HornOfPlenty.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java index 867bfb197..d0c26a5ef 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java @@ -54,7 +54,7 @@ public class HornOfPlenty extends Artifact { ArrayList 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; }