diff --git a/src/main/java/techreborn/blockentity/generator/PlasmaGeneratorBlockEntity.java b/src/main/java/techreborn/blockentity/generator/PlasmaGeneratorBlockEntity.java index 22d59aa4b..85d9f6188 100644 --- a/src/main/java/techreborn/blockentity/generator/PlasmaGeneratorBlockEntity.java +++ b/src/main/java/techreborn/blockentity/generator/PlasmaGeneratorBlockEntity.java @@ -61,6 +61,7 @@ public class PlasmaGeneratorBlockEntity extends BaseFluidGeneratorBlockEntity im .blockEntity(this).slot(0, 25, 35).outputSlot(1, 25, 55).syncEnergyValue() .syncIntegerValue(this::getTicksSinceLastChange, this::setTicksSinceLastChange) .syncIntegerValue(this::getTankAmount, this::setTankAmount) + .sync(tank) .addInventory().create(this, syncID); }