mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-03-20 22:01:28 -07:00
Block index fix
This commit is contained in:
parent
c0ac84fbc6
commit
ee64dcc026
2 changed files with 5 additions and 2 deletions
|
|
@ -195,7 +195,10 @@ public class BlockIndexer{
|
|||
return damagedTiles[team.id] = new Seq<>(false);
|
||||
}
|
||||
|
||||
return damagedTiles[team.id];
|
||||
var tiles = damagedTiles[team.id];
|
||||
tiles.removeAll(b -> !b.damaged());
|
||||
|
||||
return tiles;
|
||||
}
|
||||
|
||||
/** Get all allied blocks with a flag. */
|
||||
|
|
|
|||
|
|
@ -25,4 +25,4 @@ org.gradle.caching=true
|
|||
#used for slow jitpack builds; TODO see if this actually works
|
||||
org.gradle.internal.http.socketTimeout=100000
|
||||
org.gradle.internal.http.connectionTimeout=100000
|
||||
archash=6ece186c25
|
||||
archash=916c5a7735
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue