Fix bug #2592 and update changelog for a0385e2477

This commit is contained in:
raoulvdberge
2020-07-11 15:52:51 +02:00
parent a0385e2477
commit 9e19adc80e
2 changed files with 4 additions and 2 deletions

View File

@@ -5,6 +5,8 @@
- Fixed Wireless Crafting Monitor not closing properly (raoulvdberge)
- Fixed Controller always using energy, even when disabled with redstone (raoulvdberge)
- Fixed internal crafting inventory not being returned when Controller is broken (raoulvdberge)
- Fixed bug where autocrafting tasks started on the same tick make the wrong assumption about available items and fluids (Darkere)
- Fixed bug where the "To craft" amount in the Crafting Preview window is wrong (raoulvdberge)
- Drastically improved shift clicking performance in Crafting Grid (Darkere)
- Removed autocrafting engine version from crafting preview screen (raoulvdberge)

View File

@@ -256,11 +256,11 @@ public class CraftingTask implements ICraftingTask {
if (requested.getItem() != null) {
ItemStack req = requested.getItem().copy();
req.setCount(qty);
req.setCount(qty * qtyPerCraft);
this.toCraft.add(req);
} else {
FluidStack req = requested.getFluid().copy();
req.setAmount(qty);
req.setAmount(qty * qtyPerCraft);
this.toCraftFluids.add(req);
}