Visibility promotion for a data class

This commit is contained in:
2023-09-17 12:53:56 -04:00
parent 83be09d643
commit 3fb08ca2c3
5 changed files with 17 additions and 37 deletions
+3 -3
View File
@@ -91,11 +91,11 @@ public class ZoneInfoCmd extends AbstractDevCmd {
output += newline;
if (zone.getHeightMap() != null) {
output += "HeightMap ID: " + zone.getHeightMap().getHeightMapID();
output += "HeightMap ID: " + zone.getHeightMap().heightMapID;
output += newline;
output += "Bucket Width X : " + zone.getHeightMap().getBucketWidthX();
output += "Bucket Width X : " + zone.getHeightMap().bucketWidthX;
output += newline;
output += "Bucket Width Y : " + zone.getHeightMap().getBucketWidthY();
output += "Bucket Width Y : " + zone.getHeightMap().bucketWidthY;
}
output += "radius: x: " + zone.getBounds().getHalfExtents().x + ", z: " + zone.getBounds().getHalfExtents().y;