Fix #1827
This commit is contained in:
parent
dc1b953a24
commit
c401a336bc
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ public class RollingMachineBlockEntity extends PowerAcceptorBlockEntity
|
||||||
if (!currentRecipeOutput.isEmpty()) {
|
if (!currentRecipeOutput.isEmpty()) {
|
||||||
boolean hasCrafted = false;
|
boolean hasCrafted = false;
|
||||||
if (inventory.getInvStack(outputSlot).isEmpty()) {
|
if (inventory.getInvStack(outputSlot).isEmpty()) {
|
||||||
inventory.setInvStack(outputSlot, currentRecipeOutput);
|
inventory.setInvStack(outputSlot, currentRecipeOutput.copy());
|
||||||
tickTime = 0;
|
tickTime = 0;
|
||||||
hasCrafted = true;
|
hasCrafted = true;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue