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

Fix chemplant needing catalysts on recipes that don't #719

Merged
merged 1 commit into from
Aug 12, 2023
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 @@ -589,6 +589,8 @@ protected CheckRecipeResult validateRecipe(@NotNull GT_Recipe recipe) {
if (catalystRecipe == null || mCatalystBuses.size() != 1) {
return SimpleCheckRecipeResult.ofFailure("no_catalyst");
}
} else {
catalystRecipe = null;
}

// checks if it has enough catalyst durability
Expand Down