Jump to content

[1.20.1] Player capabilities wont save after death/when exiting the end.


Recommended Posts

Hi,

My mod has player capabilities tracking mana value, and the values will not save after death. (To be clear it does save when I exit and reenter the world)

I looked at the documentation for capabilities but it says very little about saving after death, and what it does say I've already done.

I did follow a tutorial from 1.19 so I'm guessing something changed between versions and I don't know how to fix it.

////////CODE///////////////

@SubscribeEvent

public static void onPlayerCloned(PlayerEvent.Clone event){

       if(event.isWasDeath()) {

               event.getOriginal().getCapability(PlayerManaAmountProvider.PLAYER_MANAAMOUNT).ifPresent(oldStore -> { event.getOriginal().getCapability(PlayerManaAmountProvider.PLAYER_MANAAMOUNT).ifPresent(newStore -> {                                                   newStore.copyFrom(oldStore);

             });

         });

       }

}

Link to comment
Share on other sites

  • 3 weeks later...
  • 2 weeks later...

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.



×
×
  • Create New...

Important Information

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