Terrain type is capitalized

This commit is contained in:
2023-10-08 22:54:40 -04:00
parent bc5d0cc4a9
commit 0d58aee2fe
+1 -1
View File
@@ -110,7 +110,7 @@ public class Zone extends AbstractGameObject {
this.terrain_type = "PLANAR";
}
if (this.terrain_type.equals("None"))
if (this.terrain_type.equals("NONE"))
this.terrain = null;
else
this.terrain = new Terrain(this);