From 79c2350cb10dd1a06c7c4cfb5601b8284f798868 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 30 Sep 2024 18:32:57 -0400 Subject: [PATCH] v2.5.3: fixed rare cases where spawned mimics (e.g. via cursed wand) didn't use scaling depth --- .../shatteredpixel/shatteredpixeldungeon/actors/mobs/Mimic.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Mimic.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Mimic.java index 06a4c8d01..536f18974 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Mimic.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Mimic.java @@ -313,7 +313,7 @@ public class Mimic extends Mob { } m.items = new ArrayList<>( Arrays.asList(items) ); - m.setLevel( Dungeon.depth ); + m.setLevel( Dungeon.scalingDepth() ); m.pos = pos; //generate an extra reward for killing the mimic