From 8f94d3484ba3c7722457d65dc4f4925e42065c4b Mon Sep 17 00:00:00 2001 From: drcrazy Date: Tue, 13 Aug 2019 19:43:36 +0300 Subject: [PATCH] Should fix Plasma Generator for #1780 --- .../blockentity/generator/PlasmaGeneratorBlockEntity.java | 1 + 1 file changed, 1 insertion(+) 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); }