Fixed capture wave being set to 0 in some situations

This commit is contained in:
Anuken
2020-12-05 18:03:21 -05:00
parent b0f62f25e6
commit d61bb66418
2 changed files with 2 additions and 2 deletions

View File

@@ -130,7 +130,7 @@ public class SectorInfo{
}
//if there are infinite waves and no win wave, add a win wave.
if(waves && winWave <= 0 && !attack){
if(winWave <= 0 && !attack){
winWave = 30;
}