diff --git a/gradle.properties b/gradle.properties index 4fe33de..4a5a11b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,7 +11,7 @@ neogradle.subsystems.parchment.mappingsVersion=2024.07.28 mod_id=nitrogen_internals mod_group=com.aetherteam.nitrogen mod_name=Nitrogen -mod_version=1.2.1 +mod_version=1.2.2 mod_license=Assets: All Rights Reserved; Code: LGPL-3.0 mod_url=https://github.com/The-Aether-Team/Nitrogen mod_tracker=https://github.com/The-Aether-Team/Nitrogen/issues diff --git a/src/main/java/com/aetherteam/nitrogen/recipe/recipes/BlockStateRecipe.java b/src/main/java/com/aetherteam/nitrogen/recipe/recipes/BlockStateRecipe.java index c9c519f..00175d2 100644 --- a/src/main/java/com/aetherteam/nitrogen/recipe/recipes/BlockStateRecipe.java +++ b/src/main/java/com/aetherteam/nitrogen/recipe/recipes/BlockStateRecipe.java @@ -5,11 +5,11 @@ import com.aetherteam.nitrogen.recipe.input.BlockStateRecipeInput; import net.minecraft.commands.CacheableFunction; import net.minecraft.core.HolderLookup; -import net.minecraft.core.NonNullList; import net.minecraft.resources.ResourceLocation; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.crafting.PlacementInfo; import net.minecraft.world.item.crafting.Recipe; +import net.minecraft.world.item.crafting.RecipeBookCategory; import net.minecraft.world.level.Level; import net.minecraft.world.level.block.state.BlockState; @@ -48,4 +48,9 @@ default boolean isSpecial() { default PlacementInfo placementInfo() { return null; } + + @Override + default RecipeBookCategory recipeBookCategory() { + return null; + } }