From eeca1cb7dbc411c875ff313ee5e9d1c32de632c6 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 2 Nov 2014 19:39:16 -0500 Subject: [PATCH] v0.2.2: fixed a bug with the ankh --- src/com/shatteredpixel/shatteredpixeldungeon/items/Ankh.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/Ankh.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/Ankh.java index 633fb3638..067eeac56 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/Ankh.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/Ankh.java @@ -68,7 +68,7 @@ public class Ankh extends Item { public ArrayList actions( Hero hero ) { ArrayList actions = super.actions(hero); DewVial vial = hero.belongings.getItem(DewVial.class); - if (vial != null && vial.isFull()) + if (vial != null && vial.isFull() && !blessed) actions.add( AC_BLESS ); return actions; }