Jump to content

[1.8] Different Light Levels Based on Metadata


DankParrot

Recommended Posts

Just be aware that when you start overriding methods to start using metadata where vanilla has never used metadata before, you can run into bugs in vanilla code that only a mod could expose. For example (depending on Forge version), it is possible for some of your block's methods to be called in the midst of deletion after your block has been replaced by air at its coords. If vanilla never tried to get the blockstate at coords, but you do, then you blow up.

 

Therefore, when you start testing, be sure to delete your block to see if it handles deletion correctly. If you get a crash report in a method called against an air block, then your method will need to check that the block at coords is not BlockAir (or is still an instance of your block) and handle the condition gracefully.

 

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

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