diff options
Diffstat (limited to 'src/main/java/lv/enes/mc/eris_alchemy/EMC.java')
| -rw-r--r-- | src/main/java/lv/enes/mc/eris_alchemy/EMC.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main/java/lv/enes/mc/eris_alchemy/EMC.java b/src/main/java/lv/enes/mc/eris_alchemy/EMC.java index 4f2c5e4..b8d5557 100644 --- a/src/main/java/lv/enes/mc/eris_alchemy/EMC.java +++ b/src/main/java/lv/enes/mc/eris_alchemy/EMC.java | |||
| @@ -1,10 +1,8 @@ | |||
| 1 | package lv.enes.mc.eris_alchemy; | 1 | package lv.enes.mc.eris_alchemy; |
| 2 | 2 | ||
| 3 | import jakarta.annotation.Nullable; | 3 | import jakarta.annotation.Nullable; |
| 4 | import lv.enes.mc.eris_alchemy.utils.CoralUtils; | 4 | import lv.enes.mc.eris_alchemy.utils.*; |
| 5 | import lv.enes.mc.eris_alchemy.utils.DyeUtils; | ||
| 6 | import lv.enes.mc.eris_alchemy.utils.ItemUtils; | 5 | import lv.enes.mc.eris_alchemy.utils.ItemUtils; |
| 7 | import lv.enes.mc.eris_alchemy.utils.RecipeUtils; | ||
| 8 | import net.minecraft.core.RegistryAccess; | 6 | import net.minecraft.core.RegistryAccess; |
| 9 | import net.minecraft.core.registries.BuiltInRegistries; | 7 | import net.minecraft.core.registries.BuiltInRegistries; |
| 10 | import net.minecraft.tags.BlockTags; | 8 | import net.minecraft.tags.BlockTags; |
| @@ -116,7 +114,7 @@ public class EMC { | |||
| 116 | private List<SimplifiedRecipe> getRecipes(@Nullable Level world) { | 114 | private List<SimplifiedRecipe> getRecipes(@Nullable Level world) { |
| 117 | Stream<SimplifiedRecipe> recipes = Stream.concat( | 115 | Stream<SimplifiedRecipe> recipes = Stream.concat( |
| 118 | FAKE_RECIPES.stream(), | 116 | FAKE_RECIPES.stream(), |
| 119 | SubAxe.getStrippables() | 117 | AxeUtils.getStrippables() |
| 120 | .entrySet() | 118 | .entrySet() |
| 121 | .stream() | 119 | .stream() |
| 122 | .map(entry -> new SimplifiedRecipe(entry.getValue(), Ingredient.of(entry.getKey()))) | 120 | .map(entry -> new SimplifiedRecipe(entry.getValue(), Ingredient.of(entry.getKey()))) |