Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

I have an if statement inside my interact method inside my entity class that is supposed to open a gui but i get these two exceptions but can't figure out the cause:

 

if (par1EntityPlayer.getCommandSenderName().equalsIgnoreCase(this.getOwnerName()) && 
    !this.worldObj.isRemote && !par1EntityPlayer.isSneaking() && 
    itemstack != null && 
    itemstack.getItem() == Item.getItemFromBlock(Blocks.chest) && 
    gear.getStackInSlot(20).getItem() != null) {

     			par1EntityPlayer.openGui(Blocklings.modInstance, 1, this.worldObj, this.getEntityId(), 0, 0);

    }

 

It works fine when there is an item in slot 20 but not when there isn't.

  • Author

 

Reveal hidden contents

 

Add this.isTamed() check at the top your condition. Maybe entity owner is null and you trying to get his name.

  On 7/16/2014 at 7:11 PM, qpwoeiruty said:

I have an if statement inside my interact method inside my entity class that is supposed to open a gui but i get these two exceptions but can't figure out the cause:

 

if (par1EntityPlayer.getCommandSenderName().equalsIgnoreCase(this.getOwnerName()) && 
    !this.worldObj.isRemote && !par1EntityPlayer.isSneaking() && 
    itemstack != null && 
    itemstack.getItem() == Item.getItemFromBlock(Blocks.chest) && 
    gear.getStackInSlot(20).getItem() != null) {

     			par1EntityPlayer.openGui(Blocklings.modInstance, 1, this.worldObj, this.getEntityId(), 0, 0);

    }

 

It works fine when there is an item in slot 20 but not when there isn't.

 

Your problem is you are checking the stacks ITEM for null, not the stack itself

 

change it to

 

if (gear.getStackInSlot(20)!=null && gear.getStackInSlot(20).getItem()!=null){...}

and you should be fine

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

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.