Remove pillars from Sahagin and Myrmidon dungeons

This commit is contained in:
uniior 2024-03-14 16:05:12 -03:00
parent 030c2f5219
commit 277b884194

View File

@ -1332,7 +1332,7 @@ impl Floor {
pillar = painter.prim(Primitive::union(pillar, base)); pillar = painter.prim(Primitive::union(pillar, base));
} }
// Specifically don't include pillars in Minotaur arena // Specifically don't include pillars in Minotaur arena
if !(room.kind == RoomKind::Boss && self.difficulty == 4) { if !(self.difficulty == 2 || self.difficulty == 4) {
pillars.push((tile_center, pillar, lights)); pillars.push((tile_center, pillar, lights));
} }
} }