Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

Fix the speed of the chemplant (again) #864

Merged
merged 2 commits into from
Apr 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down Expand Up @@ -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
Expand Down