diff --git a/world/src/site2/plot/coastal_house.rs b/world/src/site2/plot/coastal_house.rs index a2df3f25e6..c2e49c475a 100644 --- a/world/src/site2/plot/coastal_house.rs +++ b/world/src/site2/plot/coastal_house.rs @@ -72,8 +72,8 @@ impl Structure for CoastalHouse { // fence, blue gates painter .aabb(Aabb { - min: Vec2::new(center.x - length - 6, center.y - width - 6).with_z(base - 1), - max: Vec2::new(center.x + length + 7, center.y + width + 7).with_z(base), + min: Vec2::new(center.x - length - 6, center.y - width - 6).with_z(base - 2), + max: Vec2::new(center.x + length + 7, center.y + width + 7).with_z(base - 1), }) .fill(blue_broken.clone()); @@ -90,7 +90,7 @@ impl Structure for CoastalHouse { painter .aabb(Aabb { min: Vec2::new(center.x - length - 6, center.y - width - 6).with_z(base - height), - max: Vec2::new(center.x + length + 7, center.y + width + 7).with_z(base - 1), + max: Vec2::new(center.x + length + 7, center.y + width + 7).with_z(base - 2), }) .fill(white.clone()); for f in 0..8 { diff --git a/world/src/site2/plot/coastal_workshop.rs b/world/src/site2/plot/coastal_workshop.rs index 129119eb41..30bf03b51c 100644 --- a/world/src/site2/plot/coastal_workshop.rs +++ b/world/src/site2/plot/coastal_workshop.rs @@ -70,8 +70,8 @@ impl Structure for CoastalWorkshop { // fence, blue gates painter .aabb(Aabb { - min: Vec2::new(center.x - length - 6, center.y - width - 6).with_z(base - 1), - max: Vec2::new(center.x + length + 7, center.y + width + 7).with_z(base), + min: Vec2::new(center.x - length - 6, center.y - width - 6).with_z(base - 2), + max: Vec2::new(center.x + length + 7, center.y + width + 7).with_z(base - 1), }) .fill(blue_broken.clone()); @@ -88,7 +88,7 @@ impl Structure for CoastalWorkshop { painter .aabb(Aabb { min: Vec2::new(center.x - length - 6, center.y - width - 6).with_z(base - height), - max: Vec2::new(center.x + length + 7, center.y + width + 7).with_z(base - 1), + max: Vec2::new(center.x + length + 7, center.y + width + 7).with_z(base - 2), }) .fill(white.clone()); for f in 0..8 { diff --git a/world/src/site2/plot/savannah_pit.rs b/world/src/site2/plot/savannah_pit.rs index b626d2da97..fd693de233 100644 --- a/world/src/site2/plot/savannah_pit.rs +++ b/world/src/site2/plot/savannah_pit.rs @@ -80,16 +80,10 @@ impl Structure for SavannahPit { ) .fill(clay.clone()); // outside cylinder and decor - painter - .cylinder(Aabb { - min: (center - (3 * length) - 3).with_z(base - 1), - max: (center + (3 * length) + 3).with_z(base), - }) - .fill(wood_light.clone()); painter .cylinder(Aabb { min: (center - (3 * length) - 2).with_z(base - (1 * length)), - max: (center + (3 * length) + 2).with_z(base + 1), + max: (center + (3 * length) + 2).with_z(base), }) .fill(clay.clone()); painter @@ -223,8 +217,8 @@ impl Structure for SavannahPit { // top ring painter .cylinder(Aabb { - min: (center - (3 * length) - 1).with_z(base), - max: (center + (3 * length) + 1).with_z(base + 1), + min: (center - (3 * length) - 1).with_z(base - 1), + max: (center + (3 * length) + 1).with_z(base), }) .fill(wood_light.clone()); // floor 0 ring