Crafting Plan Screen is almost done.

This commit is contained in:
AlgorithmX2
2014-06-28 15:18:36 -05:00
parent 3031d60fc4
commit c8bdf1bd45
8 changed files with 401 additions and 21 deletions
+9
View File
@@ -228,4 +228,13 @@ public class CraftingTreeNode
for (CraftingTreeProcess pro : nodes)
pro.setJob( storage, craftingCPUCluster, src );
}
public void getPlan(IItemList<IAEItemStack> plan)
{
for (IAEItemStack i : used)
plan.add( i.copy() );
for (CraftingTreeProcess pro : nodes)
pro.getPlan( plan );
}
}