Skip to content

Commit

Permalink
encourage modifier worktable to go last in JEI
Browse files Browse the repository at this point in the history
It keeps showing up first in new config files
  • Loading branch information
KnightMiner committed Jan 15, 2023
1 parent 6384a8d commit 5689cd2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public Modifier getBase(ModifierEntry ingredient) {
public static final RecipeType<IDisplayPartBuilderRecipe> PART_BUILDER = type("part_builder", IDisplayPartBuilderRecipe.class);

// modifier workstation
public static final RecipeType<IModifierWorktableRecipe> MODIFIER_WORKTABLE = type("modifier_worktable", IModifierWorktableRecipe.class);
public static final RecipeType<IModifierWorktableRecipe> MODIFIER_WORKTABLE = type("worktable", IModifierWorktableRecipe.class);

private static <T> RecipeType<T> type(String name, Class<T> clazz) {
return RecipeType.create(TConstruct.MOD_ID, name, clazz);
Expand Down

0 comments on commit 5689cd2

Please sign in to comment.