From bb90b16406dbf897f54511140a5228079d90af2e Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 18 Aug 2024 12:28:32 -0400 Subject: [PATCH] v2.5.0: storm clouds now no longer presses cells when thrown --- .../shatteredpixeldungeon/items/potions/Potion.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 4fd07af5d..baa59e7d4 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 @@ -307,8 +307,8 @@ public class Potion extends Item { } else { - //aqua brew specifically doesn't press cells, so it can disarm traps - if (!(this instanceof AquaBrew)){ + //aqua brew and storm clouds specifically don't press cells, so they can disarm traps + if (!(this instanceof AquaBrew) && !(this instanceof PotionOfStormClouds)){ Dungeon.level.pressCell( cell ); } shatter( cell );