realm override

This commit is contained in:
2024-02-24 20:21:24 -06:00
parent 930434f35b
commit 67a5b1749c
+8 -3
View File
@@ -80,14 +80,19 @@ public class Realm {
this.canBeClaimed = false;
this.canPlaceCities = false;
this.numCities = 0;
this.rulingCityUUID = 0;
this.charterType = 0;
this.realmName = "Plagued Land";
}else {
this.canBeClaimed = rs.getBoolean("canBeClaimed");
this.canPlaceCities = rs.getBoolean("canPlaceCities");
this.numCities = rs.getInt("numCities");
this.rulingCityUUID = rs.getInt("rulingCityUID");
this.charterType = rs.getInt("charterType");
this.realmName = rs.getString("realmName");
}
this.realmName = rs.getString("realmName");
this.rulingCityUUID = rs.getInt("rulingCityUID");
this.charterType = rs.getInt("charterType");
java.sql.Timestamp ruledTimeStamp = rs.getTimestamp("ruledSince");