Error logging added

This commit is contained in:
2023-10-08 22:45:33 -04:00
parent 13163ddb7e
commit 59c3bea2d6
+1 -1
View File
@@ -44,7 +44,7 @@ public class Terrain {
this.terrain_pixel_data = Terrain._heightmap_pixel_cache.get(heightmap);
if (terrain_pixel_data == null)
Logger.error("Pixel map empty");
Logger.error("Pixel map empty for zone: " + zone.getObjectUUID() + ":" + zone.zoneName);
this.cell_count.x = this.terrain_pixel_data.length - 1;
this.cell_count.y = this.terrain_pixel_data[0].length - 1;