wip
This commit is contained in:
@@ -67,6 +67,7 @@ public class CraftingJob implements Runnable, ICraftingJob
|
||||
private final Stopwatch craftingTreeWatch = Stopwatch.createUnstarted();
|
||||
private CraftingTreeNode tree;
|
||||
private final IAEItemStack output;
|
||||
private long expectedOutput;
|
||||
private boolean simulate = false;
|
||||
private MECraftingInventory availableCheck;
|
||||
private long bytes = 0;
|
||||
@@ -98,6 +99,16 @@ public class CraftingJob implements Runnable, ICraftingJob
|
||||
this.availableCheck = null;
|
||||
}
|
||||
|
||||
public long getExpectedOutput()
|
||||
{
|
||||
return expectedOutput;
|
||||
}
|
||||
|
||||
public void incExpectedOutput( long amount )
|
||||
{
|
||||
this.expectedOutput += amount;
|
||||
}
|
||||
|
||||
private CraftingTreeNode getCraftingTree( final ICraftingGrid cc, final IAEItemStack what )
|
||||
{
|
||||
return new CraftingTreeNode( cc, this, what, null, -1, 0 );
|
||||
|
||||
Reference in New Issue
Block a user