From 8dbab8f62e931a1376717337b0bfab66144d3c99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20Vo=C3=9Fg=C3=A4tter?= Date: Wed, 22 Dec 2021 23:38:34 +0100 Subject: [PATCH] Capacity increase for MFE and MFSU. Thanks to LauchInterceptor * increase mfe energy storage to 4 million * increase mfsu energy storage to 100 million * adjusting mfsu storage to 40 million * changing javadoc --- .../blockentity/storage/energy/HighVoltageSUBlockEntity.java | 4 ++-- .../storage/energy/MediumVoltageSUBlockEntity.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/techreborn/blockentity/storage/energy/HighVoltageSUBlockEntity.java b/src/main/java/techreborn/blockentity/storage/energy/HighVoltageSUBlockEntity.java index cbb59bb51..501f6da63 100644 --- a/src/main/java/techreborn/blockentity/storage/energy/HighVoltageSUBlockEntity.java +++ b/src/main/java/techreborn/blockentity/storage/energy/HighVoltageSUBlockEntity.java @@ -41,10 +41,10 @@ import techreborn.init.TRContent; public class HighVoltageSUBlockEntity extends EnergyStorageBlockEntity implements BuiltScreenHandlerProvider { /** - * MFSU should store 4M Energy with 512 E/t I/O + * MFSU should store 40M Energy with 512 E/t I/O */ public HighVoltageSUBlockEntity(BlockPos pos, BlockState state) { - super(TRBlockEntities.HIGH_VOLTAGE_SU, pos, state, "HIGH_VOLTAGE_SU", 2, TRContent.Machine.HIGH_VOLTAGE_SU.block, RcEnergyTier.HIGH, 4_000_000); + super(TRBlockEntities.HIGH_VOLTAGE_SU, pos, state, "HIGH_VOLTAGE_SU", 2, TRContent.Machine.HIGH_VOLTAGE_SU.block, RcEnergyTier.HIGH, 40_000_000); } @Override diff --git a/src/main/java/techreborn/blockentity/storage/energy/MediumVoltageSUBlockEntity.java b/src/main/java/techreborn/blockentity/storage/energy/MediumVoltageSUBlockEntity.java index 993f9e2fd..3fe58cf05 100644 --- a/src/main/java/techreborn/blockentity/storage/energy/MediumVoltageSUBlockEntity.java +++ b/src/main/java/techreborn/blockentity/storage/energy/MediumVoltageSUBlockEntity.java @@ -40,10 +40,10 @@ import techreborn.init.TRContent; public class MediumVoltageSUBlockEntity extends EnergyStorageBlockEntity implements BuiltScreenHandlerProvider { /** - * MFE should store 300k energy with 128 E/t I/O + * MFE should store 4M energy with 128 E/t I/O */ public MediumVoltageSUBlockEntity(BlockPos pos, BlockState state) { - super(TRBlockEntities.MEDIUM_VOLTAGE_SU, pos, state, "MEDIUM_VOLTAGE_SU", 2, TRContent.Machine.MEDIUM_VOLTAGE_SU.block, RcEnergyTier.MEDIUM, 300_000); + super(TRBlockEntities.MEDIUM_VOLTAGE_SU, pos, state, "MEDIUM_VOLTAGE_SU", 2, TRContent.Machine.MEDIUM_VOLTAGE_SU.block, RcEnergyTier.MEDIUM, 4_000_000); } @Override