From 0854a6fd94af0e3cb9777e78b5dcb01141e6fd8d Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 4 Jan 2024 15:47:55 -0500 Subject: [PATCH] v2.3.0: fixed geomancer being pullable by chains --- .../shatteredpixeldungeon/actors/mobs/GnollGeomancer.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/GnollGeomancer.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/GnollGeomancer.java index f12bd6312..7f7a62b65 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/GnollGeomancer.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/GnollGeomancer.java @@ -82,6 +82,7 @@ public class GnollGeomancer extends Mob { viewDistance = 12; properties.add(Property.BOSS); + properties.add(Property.IMMOVABLE); //moves itself via ability, otherwise is static } private int abilityCooldown = Random.NormalIntRange(3, 5);