From 4759bddee8f597c5c5a8d6c31afdb8c739eb05dd Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 12 Sep 2024 15:41:02 -0400 Subject: [PATCH] v2.5.1: fixed statues becoming passive on ascent reset --- .../shatteredpixel/shatteredpixeldungeon/actors/mobs/Statue.java | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Statue.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Statue.java index 061cff903..2c46803ae 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Statue.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Statue.java @@ -173,7 +173,6 @@ public class Statue extends Mob { @Override public boolean reset() { - state = PASSIVE; return true; }