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

Commit

Permalink
fixed electric blast furnace not accepting some recipes it should be …
Browse files Browse the repository at this point in the history
…accepting
  • Loading branch information
Trinsdar committed Oct 25, 2023
1 parent 189e2f3 commit 1372f22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public long getPower() {

@Override
protected boolean validateRecipe(IRecipe r) {
return super.validateRecipe(r) && coilData != null && coilData.heat() > r.getSpecialValue();
return super.validateRecipe(r) && coilData != null && coilData.heat() >= r.getSpecialValue();
}
});
}
Expand Down

0 comments on commit 1372f22

Please sign in to comment.