From 523a37df5afacc1cc565b7aa64eee4138a605477 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 12 May 2024 12:58:01 -0400 Subject: [PATCH] v2.4.0: cursed cursed wand sheep effect not dropping them to chasms --- .../shatteredpixeldungeon/items/wands/CursedWand.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/CursedWand.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/CursedWand.java index 2c7070fc9..97f6d5dea 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/CursedWand.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/CursedWand.java @@ -293,6 +293,7 @@ public class CursedWand { CellEmitter.get(sheep.pos).burst(Speck.factory(Speck.WOOL), 4); Sample.INSTANCE.play(Assets.Sounds.PUFF); Sample.INSTANCE.play(Assets.Sounds.SHEEP); + Dungeon.level.occupyCell(sheep); } else { return cursedEffect(origin, user, targetPos); }