Fixed incorrect waves on serpulo sectors

This commit is contained in:
Anuken
2021-10-19 18:18:58 -04:00
parent 2469cf0851
commit a21f6d335f

View File

@@ -285,7 +285,7 @@ public class Waves{
if(naval){
species = Structs.filter(UnitType[].class, species, v -> v[0].flying || v[0].naval);
}else{
species = Structs.filter(UnitType[].class, species, v -> v[0].flying && !v[0].naval);
species = Structs.filter(UnitType[].class, species, v -> !v[0].naval);
}
UnitType[][] fspec = species;