Should fix Plasma Generator for #1780

This commit is contained in:
drcrazy 2019-08-13 19:43:36 +03:00
parent 0fa30e2381
commit 8f94d3484b

View file

@ -61,6 +61,7 @@ public class PlasmaGeneratorBlockEntity extends BaseFluidGeneratorBlockEntity im
.blockEntity(this).slot(0, 25, 35).outputSlot(1, 25, 55).syncEnergyValue() .blockEntity(this).slot(0, 25, 35).outputSlot(1, 25, 55).syncEnergyValue()
.syncIntegerValue(this::getTicksSinceLastChange, this::setTicksSinceLastChange) .syncIntegerValue(this::getTicksSinceLastChange, this::setTicksSinceLastChange)
.syncIntegerValue(this::getTankAmount, this::setTankAmount) .syncIntegerValue(this::getTankAmount, this::setTankAmount)
.sync(tank)
.addInventory().create(this, syncID); .addInventory().create(this, syncID);
} }