Browse Source

Single map color stored as hex string.

master
MagicBot 2 years ago
parent
commit
23a07175e5
  1. 10
      src/engine/objects/Realm.java

10
src/engine/objects/Realm.java

@ -74,11 +74,11 @@ public class Realm { @@ -74,11 +74,11 @@ public class Realm {
*/
public Realm(ResultSet rs) throws SQLException, UnknownHostException {
this.mapColor = new Color(rs.getInt("mapColor"));
this.mapR = rs.getFloat("mapR");
this.mapG = rs.getFloat("mapG");
this.mapB = rs.getFloat("mapB");
this.mapA = rs.getFloat("mapA");
this.mapColor = new Color(Integer.parseInt(rs.getString("realmColor"), 16));
this.mapR = (float) (mapColor.getRed() * 0.00392156863);
this.mapG = (float) (mapColor.getGreen() * 0.00392156863);
this.mapB = (float) (mapColor.getBlue() * 0.00392156863);
this.mapA = 1;
this.canBeClaimed = rs.getBoolean("canBeClaimed");
this.canPlaceCities = rs.getBoolean("canPlaceCities");
this.numCities = rs.getInt("numCities");

Loading…
Cancel
Save