PlayerAbilityLib

PlayerAbilityLib

1M Downloads

[Question] Is abilities persistent after death?

eliskvitka opened this issue ยท 2 comments

commented

I am using this library in my own mod and it looks like abilities don't persist after death
Or maybe i am using it wrong? You can take a look here

commented

Correct, there is no included mechanism for persistence after death. Depending on your use case, you could use something like Cardinal Components API to persist data, or just a mixin to ServerPlayerEntity#copyFrom.

commented

Correct, there is no included mechanism for persistence after death. Depending on your use case, you could use something like Cardinal Components API to persist data, or just a mixin to ServerPlayerEntity#copyFrom.

Okay, I get it
Thank you