Jump to content

Recommended Posts

Posted

Hello,

I've put a bollean in my config. Now, when someone set it to false a special item should not load. But how can I do that, when the item has more classes for example: container.class, gui.class . When I only disable the item i get a crash.

 

 

Posted

from your detailed crash report i'm guessing that it's crashing because the item has no itemID?

 

are you branching your code to take this into account?

 

i.e. are you ensuring that anywhere where that item would have been referenced when it does have a valid ID, is not reached when it doesn't?

 

 

for example - in pseudo code:

 

if ( configItemEnabled )

{

  do thing with item

}

else

{

skip thing and don't go anywhere near thinking about referencing the item

}

 

everywhere where you would otherwise just use the item....

 

Posted

Well, as a first, you need to get the boolean.

Then, only if it is set to true, should you initialize, register the item and its recipe.

 

If you gui needs your item (i don't know why it would, but...) you should disable the gui with it. Only open the gui if boolean is set to true.

All the same for any other dependency your item may have.

 

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.