Browse Source

Opposite of 1006300 created as 1006301.

magicbox-1.5.2
MagicBot 1 year ago
parent
commit
d15b8a5246
  1. 5
      src/engine/InterestManagement/Terrain.java
  2. 3
      src/engine/objects/Zone.java

5
src/engine/InterestManagement/Terrain.java

@ -43,7 +43,10 @@ public class Terrain { @@ -43,7 +43,10 @@ public class Terrain {
// terrains share.
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

3
src/engine/objects/Zone.java

@ -110,8 +110,7 @@ public class Zone extends AbstractGameObject { @@ -110,8 +110,7 @@ public class Zone extends AbstractGameObject {
this.terrain_max_y = 5;
this.major_radius = (int) Enum.CityBoundsType.ZONE.halfExtents;
this.minor_radius = (int) Enum.CityBoundsType.ZONE.halfExtents;
this.terrain_type = "TARGA";
this.terrain_image = 1006301;
this.terrain_type = "PLANAR";
}
if (this.terrain_type.equals("NONE"))

Loading…
Cancel
Save