Jump to content

Recommended Posts

Posted

I created bookshelfs for the other woodtypes. I have 1 problem!

When i break them they return 3 books wich is normal and that's also what i want them to do. So that's fine!

Yet they do drop as a book with metedata. You see them ingame as huge black/pink cubes.

How can i prevent this?

Here is the code :

 

  Reveal hidden contents

 

 

this is the methis that return the metadata for the drop.

Removing this from the class solves it, but then in creative mode you don't get the right block if you

click with the middlemouse button.

@Override
public int damageDropped(IBlockState state) {
    return getMetaFromState(state);
}

 

Posted

Remove the

Block#damageDropped

override and override

Block#getPickBlock

to return the appropriate

ItemStack

of your bookshelf.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted
  On 11/6/2016 at 3:02 AM, Choonster said:

Remove the

Block#damageDropped

override and override

Block#getPickBlock

to return the appropriate

ItemStack

of your bookshelf.

jup fixed it now:

@Override
public ItemStack getPickBlock(IBlockState state, RayTraceResult target, World world, BlockPos pos, EntityPlayer player)
    {
	Block block = world.getBlockState(pos).getBlock();
	int meta = ((Enum<EnumType>) world.getBlockState(pos).getValue(TYPE)).ordinal();
        return new ItemStack(block,1,meta);
}

This method comes standard with return getItem(world, pos, state)

But that's deprecated and doesn't work in this case.

So i came with this idea. What you think? Good or bad? It's working.

Posted

There's no need to get the

IBlockState

from the world, you receive it as an argument.

 

You can also just use

this

as the

Block

instead of getting it from the

IBlockState

.

 

You should never need to cast the value returned by

IBlockState#getValue

, it should already return the appropriate type.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted
  On 11/6/2016 at 4:08 AM, Choonster said:

There's no need to get the

IBlockState

from the world, you receive it as an argument.

 

You can also just use

this

as the

Block

instead of getting it from the

IBlockState

.

 

You should never need to cast the value returned by

IBlockState#getValue

, it should already return the appropriate type.

I added a cast to it because eclipse tells me do to so. If i don't it it marked as "wrong".

i now changed my code to this:

@Override
public ItemStack getPickBlock(IBlockState state, RayTraceResult target, World world, BlockPos pos, EntityPlayer player)
    {
	Block block = state.getBlock();
	int meta = block.getMetaFromState(state);
        return new ItemStack(block,1,meta);
}

Strange i haven't seent his before but this looks a lot better now.

I also decided to get the meta from the state. Perhaps it makes more sense.

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.