mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-02-19 22:52:15 -08:00
Unordered damaged building indices
This commit is contained in:
parent
d9a92dc10e
commit
41964cd130
1 changed files with 1 additions and 1 deletions
|
|
@ -181,7 +181,7 @@ public class BlockIndexer{
|
|||
/** Returns all damaged tiles by team. */
|
||||
public Seq<Building> getDamaged(Team team){
|
||||
if(damagedTiles[team.id] == null){
|
||||
return damagedTiles[team.id] = new Seq<>();
|
||||
return damagedTiles[team.id] = new Seq<>(false);
|
||||
}
|
||||
|
||||
return damagedTiles[team.id];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue