From 92074e16d379c1ce2da8debda203d8a328726d25 Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 4 May 2023 20:54:25 -0400 Subject: [PATCH] Made most inaccessible adlet caves accessible --- world/src/site2/plot/adlet.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/world/src/site2/plot/adlet.rs b/world/src/site2/plot/adlet.rs index d3f3d29db1..c5b3f749a0 100644 --- a/world/src/site2/plot/adlet.rs +++ b/world/src/site2/plot/adlet.rs @@ -517,6 +517,16 @@ impl Structure for AdletStronghold { Dir::NegY => Vec3::new(tunnel_start.x, raw_tunnel_end.y + offset, raw_tunnel_end.z), }; // Platform + painter + .line( + tunnel_start + Vec3::new(0.0, 0.0, 5.0), + { + let end = tunnel_start + (dir.to_vec2().as_().with_z(1.0) * 20.0); + end.with_z(end.z + 5.0) + }, + 10.0, + ) + .clear(); painter .sphere(Aabb { min: (self.entrance - 15).with_z(self.cavern_alt as i32 - 15),