Jump to content

Could not restore char data PROBLEM


Recommended Posts

Hello I encountered an error that I'm having trouble resolving.

This is the error i got on console when i log the char into game

 

Could not restore char data: java.lang.NullPointerException

 

Screenshot_1.png

Edited by NifO_TOP
screen
Link to comment
Share on other sites

  • 2 weeks later...
Provide the logs, it will give you details regarding the issue.

For now simply check for "Could not restore char data" on your project, and revert or fix your customs on the given method.

Basically you got a method call returning nothing ("null") while it should be set. Either you missed a != null check, or you messed up the logic.

Eg. if you do player.getInventory().addItem but never set _inventory before on that Player, then it ends as NPE because getInventory() isn't set and returns null.

So, null pointer exception.
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  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...