From dd2e8d5b5e86be7be2c4fde4bed2de36912359e4 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 2 Nov 2016 21:14:55 -0400 Subject: [PATCH] v0.4.3b: potions now press tiles when they are thrown onto them --- .../shatteredpixeldungeon/items/potions/Potion.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/Potion.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/Potion.java index 6f2d21441..a85e03a39 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/Potion.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/Potion.java @@ -216,7 +216,8 @@ public class Potion extends Item { super.onThrow( cell ); } else { - + + Dungeon.level.press( cell, null ); shatter( cell ); }