mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-30 06:37:50 +07:00
Block index fix
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user