This commit is contained in:
modmuss50 2019-11-28 17:15:46 +00:00
parent b0d548cdf6
commit d7cfbcd443
17 changed files with 48 additions and 48 deletions

View file

@ -133,7 +133,7 @@ public class IndustrialBlastFurnaceBlockEntity extends GenericMachineBlockEntity
return new ContainerBuilder("blastfurnace").player(player.inventory).inventory().hotbar().addInventory()
.blockEntity(this).slot(0, 50, 27).slot(1, 50, 47).outputSlot(2, 93, 37).outputSlot(3, 113, 37)
.energySlot(4, 8, 72).syncEnergyValue().syncCrafterValue()
.syncIntegerValue(this::getHeat, this::setHeat).addInventory().create(this, syncID);
.sync(this::getHeat, this::setHeat).addInventory().create(this, syncID);
}
}