RS 1.2.3 hugh mungus edition
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
### 1.2.3
|
### 1.2.3
|
||||||
- Fixed fluid cache updating wrongly (raoulvdberge)
|
- Fixed fluid cache updating wrongly (raoulvdberge)
|
||||||
|
- Fixed Exporter scheduling too many tasks (raoulvdberge)
|
||||||
|
|
||||||
### 1.2.2
|
### 1.2.2
|
||||||
- Various autocrafting fixes (way2muchnoise)
|
- Various autocrafting fixes (way2muchnoise)
|
||||||
|
|||||||
@@ -65,12 +65,14 @@ public class TileExporter extends TileMultipartNode implements IComparable, ITyp
|
|||||||
if (slot != null) {
|
if (slot != null) {
|
||||||
ItemStack took = network.extractItem(slot, upgrades.getInteractStackSize(), compare, true);
|
ItemStack took = network.extractItem(slot, upgrades.getInteractStackSize(), compare, true);
|
||||||
|
|
||||||
if (ItemHandlerHelper.insertItem(handler, took, true) == null) {
|
if (took == null) {
|
||||||
|
if (upgrades.hasUpgrade(ItemUpgrade.TYPE_CRAFTING)) {
|
||||||
|
network.scheduleCraftingTask(slot, 1, compare);
|
||||||
|
}
|
||||||
|
} else if (ItemHandlerHelper.insertItem(handler, took, true) == null) {
|
||||||
took = network.extractItem(slot, upgrades.getInteractStackSize(), compare, false);
|
took = network.extractItem(slot, upgrades.getInteractStackSize(), compare, false);
|
||||||
|
|
||||||
ItemHandlerHelper.insertItem(handler, took, false);
|
ItemHandlerHelper.insertItem(handler, took, false);
|
||||||
} else if (upgrades.hasUpgrade(ItemUpgrade.TYPE_CRAFTING)) {
|
|
||||||
network.scheduleCraftingTask(slot, 1, compare);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user