Undo broken caching feature; replace with special case for IMEMonitors should at least be more optimized then two loops.

This commit is contained in:
AlgorithmX2
2014-09-19 11:20:06 -05:00
parent 961cb8e4a9
commit d9060b7ca5
2 changed files with 31 additions and 53 deletions
+1 -2
View File
@@ -77,8 +77,7 @@ public class CraftingJob implements Runnable, ICraftingJob
this.callback = callback;
ICraftingGrid cc = grid.getCache( ICraftingGrid.class );
IStorageGrid sg = grid.getCache( IStorageGrid.class );
original = new MECraftingInventory( sg.getItemInventory(), false, false, false );
original.filterPermissions( actionSrc );
original = new MECraftingInventory( sg.getItemInventory(), actionSrc, false, false, false );
tree = getCraftingTree( cc, what );
availableCheck = null;