Fix #2407: Enable overfill checking on fusion reactor energy stored (#2495)

This commit is contained in:
Dave Smith 2021-09-16 14:31:54 -06:00 committed by GitHub
parent 41422f4a66
commit dcca103f9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,7 +70,6 @@ public class FusionControlComputerBlockEntity extends GenericMachineBlockEntity
public FusionControlComputerBlockEntity(BlockPos pos, BlockState state) {
super(TRBlockEntities.FUSION_CONTROL_COMPUTER, pos, state, "FusionControlComputer", -1, -1, TRContent.Machine.FUSION_CONTROL_COMPUTER.block, -1);
checkOverfill = false;
this.inventory = new RebornInventory<>(3, "FusionControlComputerBlockEntity", 64, this);
}