diff --git a/world/src/site2/plot/dungeon.rs b/world/src/site2/plot/dungeon.rs index f667db1134..910431a3de 100644 --- a/world/src/site2/plot/dungeon.rs +++ b/world/src/site2/plot/dungeon.rs @@ -1331,8 +1331,8 @@ impl Floor { lights = painter.prim(Primitive::translate(lights, 3 * Vec3::unit_z())); pillar = painter.prim(Primitive::union(pillar, base)); } - // Specifically don't include pillars in Minotaur arena - if !(room.kind == RoomKind::Boss && self.difficulty == 4) { + // Specifically don't include pillars in Sahagin and Myrmidon dungeons + if !(self.difficulty == 2 || self.difficulty == 4) { pillars.push((tile_center, pillar, lights)); } }