Recycler GUI now syncs "crafting" progress with client (#2385). Thanks to vhd

This commit is contained in:
vhd 2021-04-12 14:24:51 +03:00 committed by modmuss50
parent 133119f38b
commit 2541e20693

View file

@ -65,6 +65,6 @@ public class RecyclerBlockEntity extends GenericMachineBlockEntity implements Bu
return new ScreenHandlerBuilder("recycler").player(player.getInventory()).inventory().hotbar().addInventory()
.blockEntity(this).slot(0, 55, 45, RecyclerBlockEntity::canRecycle)
.outputSlot(1, 101, 45).energySlot(2, 8, 72).syncEnergyValue()
.addInventory().create(this, syncID);
.syncCrafterValue().addInventory().create(this, syncID);
}
}