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; }