Jump to content

[1.16.4] How to copy NBT between recipe ingredients and result?


Recommended Posts

Posted

I saw a post covering this topic, but it was for 1.12 and I was unable to do something like this in 1.16.

I may not be understanding something here, could anyone please explain how should I go about implementing such thing for 1.16?

Posted

So I managed to make it work, but it only works for singleplayer. When I try to join a server, the client throws 

Internal Exception: io.netty.handler.codec.EncoderException: java.lang.NullPointerException

I am registering the recipe here:

@SubscribeEvent
public static void onRecipeRegistry(final RegistryEvent.Register<IRecipeSerializer<?>> recipeRegistryEvent)
{
    LOGGER.info("Recipe registry!");
    SpecialRecipeSerializer<MusicCloningRecipe> musicCloningRecipe = (SpecialRecipeSerializer<MusicCloningRecipe>) new SpecialRecipeSerializer<>(MusicCloningRecipe::new).setRegistryName("crafting_special_musiccloning");
    recipeRegistryEvent.getRegistry().register(
            musicCloningRecipe
    );
}

And it is kept here:

@ObjectHolder("musicblock")
class Recipes
{
    public static final SpecialRecipeSerializer<MusicCloningRecipe> CRAFTING_SPECIAL_MUSICCLONING = null;
}

Could someone please tell me what am I doing wrong? I couldn't really find a good documentation for it.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.