rs constructor completed

This commit is contained in:
2023-10-20 16:30:41 -04:00
parent cf2bf2dacf
commit 930aa73657
+8 -8
View File
@@ -38,14 +38,14 @@ public class ZoneTemplate {
this.templateID = rs.getInt("template");
this.zone_type = rs.getString("zone_type");
this.zone_name = rs.getString("zone_name");
this.peace_zone = rs.getString("peace_zone");
this.major_radius = rs.getFloat("major_radius");
this.minor_radius = rs.getFloat("minor_radius");
this.min_blend = rs.getFloat("min_blend");
this.max_blend = rs.getFloat("max_blend");
this.has_water = rs.getString("has_water");
this.sea_level = rs.getFloat("sea_level");
this.has_terrain = rs.getString("has_terrain");
this.peace_zone = rs.getString("zone_peace_zone");
this.major_radius = rs.getFloat("zone_major_radius");
this.minor_radius = rs.getFloat("zone_minor_radius");
this.min_blend = rs.getFloat("zone_min_blend");
this.max_blend = rs.getFloat("zone_max_blend");
this.has_water = rs.getString("zone_has_water");
this.sea_level = rs.getFloat("zone_sea_level");
this.has_terrain = rs.getString("zone_has_terrain");
this.terrain_type = rs.getString("terrain_type");
this.terrain_max_y = rs.getFloat("terrain_max_y");
this.terrain_image = rs.getInt("terrain_image");