Browse Source

yet another attempt at mines

lakebane-master
FatBoy-DOTC 6 months ago
parent
commit
a2da8f3861
  1. 2
      src/engine/objects/Mine.java
  2. 2
      src/engine/objects/MineProduction.java

2
src/engine/objects/Mine.java

@ -218,7 +218,7 @@ public class Mine extends AbstractGameObject { @@ -218,7 +218,7 @@ public class Mine extends AbstractGameObject {
writer.putInt(mine.getObjectUUID());
writer.putInt(mine.getObjectUUID()); //actually a hash of mine
writer.putString(mine.mineType.name);
writer.putString(Mine.getMineNationality(mine.liveHour) + " {" + mine.capSize + " Man}");
writer.putString(Mine.getMineNationality(mine.liveHour) + " " + mine.capSize + " Man ");
writer.putInt(mine.production.hash);
writer.putInt(mine.getModifiedProductionAmount());
writer.putInt(mine.getModifiedProductionAmount()); //TODO calculate range penalty here

2
src/engine/objects/MineProduction.java

@ -13,7 +13,7 @@ import java.util.HashMap; @@ -13,7 +13,7 @@ import java.util.HashMap;
public enum MineProduction {
LUMBER("Universal Mine", new HashMap<>(), Resource.WORMWOOD, 1618637196, 1663491950),
LUMBER("Lumber Mine", new HashMap<>(), Resource.WORMWOOD, 1618637196, 1663491950),
ORE("Ore Mine", new HashMap<>(), Resource.OBSIDIAN, 518103023, -788976428),
GOLD("Gold Mine", new HashMap<>(), Resource.GALVOR, -662193002, -1227205358),
MAGIC("Magic Mine", new HashMap<>(), Resource.BLOODSTONE, 504746863, -1753567069),

Loading…
Cancel
Save