diff --git a/engine/src/main/battlecode/world/LiveMap.java b/engine/src/main/battlecode/world/LiveMap.java index c7c28175..6785f884 100644 --- a/engine/src/main/battlecode/world/LiveMap.java +++ b/engine/src/main/battlecode/world/LiveMap.java @@ -407,20 +407,15 @@ public void assertIsValid() throws Exception{ } } if(this.damArray[i]) { - if(this.breadArray[i] != 0) { - throw new RuntimeException("Dams can't be on the same square as bread."); - } if(this.spawnZoneArray[i] != 0) { throw new RuntimeException("Dams can't be on the same square as spawn zones."); } } - if(this.waterArray[i]) { if(this.spawnZoneArray[i] != 0) { throw new RuntimeException("Water can't be on the same square as spawn zones."); } } - } assertSpawnZoneDistances(); assertSpawnZonesAreValid();