Skip to content

Commit 9d46031

Browse files
Fix output item setting in FurnaceWorkbenchEntity
1 parent 7a67138 commit 9d46031

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/tcm/MineTale/block/workbenches/entity/FurnaceWorkbenchEntity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ private void smeltItem(ItemStack input) {
215215
ItemStack output = inventory.getItem(outputSlot);
216216

217217
if (output.isEmpty()) {
218-
inventory.setItem(outputSlot, result.copy())
218+
inventory.setItem(outputSlot, result.copy());
219219
} else if (ItemStack.isSameItem(output, result)) {
220220
output.grow(result.getCount());
221221
}
@@ -320,4 +320,4 @@ protected void loadAdditional(ValueInput valueInput) {
320320
public @Nullable AbstractContainerMenu createMenu(int syncId, Inventory playerInventory, Player player) {
321321
return new FurnaceWorkbenchMenu(syncId, playerInventory, this.inventory, this.data);
322322
}
323-
}
323+
}

0 commit comments

Comments
 (0)