Increased max wave simulation count

This commit is contained in:
Anuken
2024-09-05 14:46:45 -04:00
parent 3ac035a495
commit 5bff681096
3 changed files with 3 additions and 2 deletions

Binary file not shown.

View File

@@ -568,7 +568,8 @@ public class SerpuloTechTree{
), () -> { ), () -> {
node(taintedWoods, Seq.with( node(taintedWoods, Seq.with(
new SectorComplete(biomassFacility), new SectorComplete(biomassFacility),
new Research(Items.sporePod) new Research(Items.sporePod),
new Research(wave)
), () -> { ), () -> {
}); });

View File

@@ -21,7 +21,7 @@ import mindustry.world.blocks.storage.*;
import static mindustry.Vars.*; import static mindustry.Vars.*;
public class SectorDamage{ public class SectorDamage{
public static final int maxRetWave = 50, maxWavesSimulated = 60; public static final int maxRetWave = 110, maxWavesSimulated = 111;
//direct damage is for testing only //direct damage is for testing only
private static final boolean rubble = true; private static final boolean rubble = true;