From 82897860993000f8d5907a8b0de30a2627de9850 Mon Sep 17 00:00:00 2001 From: MagicBot Date: Wed, 20 Sep 2023 16:03:55 -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 6889fcb1..f9a715cd 100644 --- a/src/engine/objects/Zone.java +++ b/src/engine/objects/Zone.java @@ -75,7 +75,7 @@ public class Zone extends AbstractGameObject { this.zOffset = rs.getFloat("zOffset"); this.yOffset = rs.getFloat("yOffset"); this.zoneTemplate = rs.getInt("template"); - this.peaceZone = rs.getByte("paceZone"); + this.peaceZone = rs.getByte("peaceZone"); this.Icon1 = rs.getString("icon1"); this.Icon2 = rs.getString("icon2"); this.Icon3 = rs.getString("icon3");