Opposite of 1006300 created as 1006301.

This commit is contained in:
2023-10-12 06:01:55 -04:00
parent c1e1c730bb
commit d15b8a5246
2 changed files with 5 additions and 3 deletions
+4 -1
View File
@@ -43,7 +43,10 @@ public class Terrain {
// terrains share. // terrains share.
if (this.zone.terrain_type.equals("PLANAR")) if (this.zone.terrain_type.equals("PLANAR"))
this.heightmap = 1006300; if (this.zone.guild_zone)
this.heightmap = 1006301;
else
this.heightmap = 1006300;
// Load pixel data for this terrain from cache // Load pixel data for this terrain from cache
+1 -2
View File
@@ -110,8 +110,7 @@ public class Zone extends AbstractGameObject {
this.terrain_max_y = 5; this.terrain_max_y = 5;
this.major_radius = (int) Enum.CityBoundsType.ZONE.halfExtents; this.major_radius = (int) Enum.CityBoundsType.ZONE.halfExtents;
this.minor_radius = (int) Enum.CityBoundsType.ZONE.halfExtents; this.minor_radius = (int) Enum.CityBoundsType.ZONE.halfExtents;
this.terrain_type = "TARGA"; this.terrain_type = "PLANAR";
this.terrain_image = 1006301;
} }
if (this.terrain_type.equals("NONE")) if (this.terrain_type.equals("NONE"))