From 16147e093eb8801a55c66d3f004e9b43cc75cf79 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 26 Nov 2025 11:19:00 -0500 Subject: [PATCH] v3.3.0: fixed comodification exception in Tengu cell (hopefully) --- .../shatteredpixeldungeon/levels/PrisonBossLevel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/PrisonBossLevel.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/PrisonBossLevel.java index b5c72876e..98a5a0c69 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/PrisonBossLevel.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/PrisonBossLevel.java @@ -649,7 +649,7 @@ public class PrisonBossLevel extends Level { Painter.fill(this, tenguCell, 1, Terrain.EMPTY); buildFlagMaps(); - for (CustomTilemap vis : customTiles){ + for (CustomTilemap vis : customTiles.toArray(new CustomTilemap[0])){ if (vis instanceof FadingTraps){ ((FadingTraps) vis).remove(); }