From 56f159d50a6543dcf5cf3a3b82ea02ff61b48c67 Mon Sep 17 00:00:00 2001 From: MagicBot Date: Wed, 20 Sep 2023 16:01:01 -0400 Subject: [PATCH] class and table schema now conform to JSON --- src/engine/objects/Zone.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/objects/Zone.java b/src/engine/objects/Zone.java index 08ed51af..6889fcb1 100644 --- a/src/engine/objects/Zone.java +++ b/src/engine/objects/Zone.java @@ -74,7 +74,7 @@ public class Zone extends AbstractGameObject { this.xOffset = rs.getFloat("xOffset"); this.zOffset = rs.getFloat("zOffset"); this.yOffset = rs.getFloat("yOffset"); - this.zoneTemplate = rs.getInt("zoneTemplate"); + this.zoneTemplate = rs.getInt("template"); this.peaceZone = rs.getByte("paceZone"); this.Icon1 = rs.getString("icon1"); this.Icon2 = rs.getString("icon2");