From ebefc70b6d41c19c61fc21f548a942a0331f7fb6 Mon Sep 17 00:00:00 2001 From: joegnis Date: Wed, 4 Sep 2024 06:53:16 -0400 Subject: Fixes #17207 (#3041) Changed methods in OverclockCalculator: - setEUtDiscount - setSpeedBoost - setHeatDiscountMultiplier Most of other changes are directly related to them. Adds a unit test. Co-authored-by: boubou19 --- .../goodgenerator/blocks/tileEntity/MTEComponentAssemblyLine.java | 4 ++-- .../java/goodgenerator/blocks/tileEntity/MTEPreciseAssembler.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/goodgenerator') diff --git a/src/main/java/goodgenerator/blocks/tileEntity/MTEComponentAssemblyLine.java b/src/main/java/goodgenerator/blocks/tileEntity/MTEComponentAssemblyLine.java index 6110cf6eeb..6485f0769a 100644 --- a/src/main/java/goodgenerator/blocks/tileEntity/MTEComponentAssemblyLine.java +++ b/src/main/java/goodgenerator/blocks/tileEntity/MTEComponentAssemblyLine.java @@ -50,7 +50,7 @@ public class MTEComponentAssemblyLine extends MTEExtendedPowerMultiBlockBase STRUCTURE_DEFINITION = StructureDefinition .builder() @@ -321,7 +321,7 @@ public class MTEComponentAssemblyLine extends MTEExtendedPowerMultiBlockBase mode == 0 ? 1 : (int) Math.pow(2, 4 + (casingTier + 1))); } -- cgit