Fixed many various map bugs

This commit is contained in:
Anuken
2019-05-26 16:46:44 -04:00
parent 34635e3460
commit 752267c521
26 changed files with 796 additions and 746 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ public class Teams{
/** Returns whether a team is active, e.g. whether it has any cores remaining. */
public boolean isActive(Team team){
//the enemy wave team is always active
return (Vars.state.rules.waves && team == Vars.waveTeam) || get(team).cores.size > 0;
return team == Vars.waveTeam || get(team).cores.size > 0;
}
/** Returns a set of all teams that are enemies of this team. */