Renamed TeamData blocks -> plans

This commit is contained in:
Anuken
2022-05-07 10:57:21 -04:00
parent 8f2e1163dd
commit 7885a46cd5
10 changed files with 24 additions and 24 deletions

View File

@@ -247,7 +247,7 @@ public class Teams{
/** Enemies with cores or spawn points. */
public Team[] coreEnemies = {};
/** Planned blocks for drones. This is usually only blocks that have been broken. */
public Queue<BlockPlan> blocks = new Queue<>();
public Queue<BlockPlan> plans = new Queue<>();
/** Quadtree for all buildings of this team. Null if not active. */
public @Nullable QuadTree<Building> buildingTree;
@@ -290,7 +290,7 @@ public class Teams{
}
//no remaining blocks, cease building if applicable
blocks.clear();
plans.clear();
//convert all team tiles to neutral, randomly killing them
for(var b : builds){