0.7.17 done

This commit is contained in:
Raoul Van den Berge
2016-06-24 19:22:29 +02:00
parent 1287fab805
commit 156f7d62d5
2 changed files with 4 additions and 3 deletions

View File

@@ -496,9 +496,6 @@ public class TileController extends TileBase implements INetworkMaster, IEnergyR
int sizePushed = remainder != null ? (orginalSize - remainder.stackSize) : orginalSize;
if (!simulate && sizePushed > 0) {
updateItems();
updateItemsWithClient();
for (int i = 0; i < sizePushed; ++i) {
if (!craftingTasks.empty()) {
ICraftingTask top = craftingTasks.peek();
@@ -508,6 +505,9 @@ public class TileController extends TileBase implements INetworkMaster, IEnergyR
}
}
}
updateItems();
updateItemsWithClient();
}
return remainder;