Skip to content

Commit

Permalink
Prevent compat recipes from generating during runtime datagen (#928)
Browse files Browse the repository at this point in the history
  • Loading branch information
Swedz authored Nov 15, 2024
1 parent cf14efb commit a52a091
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ public static void configure(
aggregate.addProvider(MaterialRecipesProvider::new);
aggregate.addProvider(DyeRecipesProvider::new);
aggregate.addProvider(AssemblerRecipesProvider::new);
aggregate.addProvider(CompatRecipesProvider::new);
if (!runtimeDatagen) {
aggregate.addProvider(CompatRecipesProvider::new);
}
aggregate.addProvider(UpgradeProvider::new);
aggregate.addProvider(VanillaCompatRecipesProvider::new);

Expand Down

0 comments on commit a52a091

Please sign in to comment.