From 3b53231d0ed59e59a0a022a5cda6142beca4941d Mon Sep 17 00:00:00 2001 From: chochem <40274384+chochem@users.noreply.github.com> Date: Sun, 7 Apr 2024 13:50:44 +0100 Subject: [PATCH] Fix the speed of the chemplant (again) (#864) * fix speed bonus * simplify as requested --- .../production/chemplant/GregtechMTE_ChemicalPlant.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java index 9df9c0086..6471a5e26 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java @@ -509,11 +509,6 @@ public boolean explodesOnComponentBreak(final ItemStack aStack) { return false; } - // Same speed bonus as pyro oven - public int getSpeedBonus() { - return 50 * (this.mCoilTier + 1); - } - public int getMaxCatalystDurability() { return 50; } @@ -607,7 +602,8 @@ protected CheckRecipeResult onRecipeStart(@NotNull GT_Recipe recipe) { @Override protected void setupProcessingLogic(ProcessingLogic logic) { super.setupProcessingLogic(logic); - logic.setSpeedBonus(100F / (100F + getSpeedBonus())); + // Same speed bonus as pyro oven + logic.setSpeedBonus(2F / (1 + this.mCoilTier)); } @Override