mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Merge branch 'pillar-removal' into 'master'
Remove pillars from Sahagin and Myrmidon dungeons See merge request veloren/veloren!4378
This commit is contained in:
commit
f46b8631b5
@ -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));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user