From d0845b481c9a34c4c3424e18b1adcea78fce86ef Mon Sep 17 00:00:00 2001 From: GlFolker <63218676+GlennFolker@users.noreply.github.com> Date: Wed, 14 Feb 2024 22:04:55 +0700 Subject: [PATCH] Update Sector.java (#9553) --- core/src/mindustry/type/Sector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/type/Sector.java b/core/src/mindustry/type/Sector.java index 921802e389..304a73452a 100644 --- a/core/src/mindustry/type/Sector.java +++ b/core/src/mindustry/type/Sector.java @@ -236,7 +236,7 @@ public class Sector{ /** Projects this sector onto a 4-corner square for use in map gen. * Allocates a new object. Do not call in the main loop. */ - private SectorRect makeRect(){ + protected SectorRect makeRect(){ Vec3[] corners = new Vec3[tile.corners.length]; for(int i = 0; i < corners.length; i++){ corners[i] = tile.corners[i].v.cpy().setLength(planet.radius);