From 277b884194e1f19a116263430ec93ba825e86ee3 Mon Sep 17 00:00:00 2001 From: uniior Date: Thu, 14 Mar 2024 16:05:12 -0300 Subject: [PATCH 1/2] Remove pillars from Sahagin and Myrmidon dungeons --- world/src/site2/plot/dungeon.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world/src/site2/plot/dungeon.rs b/world/src/site2/plot/dungeon.rs index f667db1134..e3bcb81043 100644 --- a/world/src/site2/plot/dungeon.rs +++ b/world/src/site2/plot/dungeon.rs @@ -1332,7 +1332,7 @@ impl Floor { pillar = painter.prim(Primitive::union(pillar, base)); } // 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)); } } From 6c606646aec49513f3ff7635c7768ba396453cf7 Mon Sep 17 00:00:00 2001 From: uniior Date: Thu, 14 Mar 2024 16:15:54 -0300 Subject: [PATCH 2/2] Comment --- world/src/site2/plot/dungeon.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world/src/site2/plot/dungeon.rs b/world/src/site2/plot/dungeon.rs index e3bcb81043..910431a3de 100644 --- a/world/src/site2/plot/dungeon.rs +++ b/world/src/site2/plot/dungeon.rs @@ -1331,7 +1331,7 @@ 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 + // Specifically don't include pillars in Sahagin and Myrmidon dungeons if !(self.difficulty == 2 || self.difficulty == 4) { pillars.push((tile_center, pillar, lights)); }