Jump to content

How to set default drop in Block class?


Atijaf

Recommended Posts

I created a new block and I want it to drop a vanilla diorite block.  How would I go about this?

 

Here's my class.  Sorry, It wouldn't let me place it in a spoiler.

 

public class stoneBlock extends Block{

 

public stoneBlock(Material materialIn) {

super(materialIn);

this.setHarvestLevel("pickaxe", 0);

}

 

public Item getItemDropped(IBlockState state, Random rand, int fortune){

return new ItemStack(Item.getItemFromBlock(Blocks.stone), 1, 3);

}

}

Link to comment
Share on other sites

There are 3 methods responsible for dropping.

 

When Block is broken, game asks "getDrops" for dropList - List<ItemStack>.

To get full control over drops you can override it and simply return List containing whatever you want.

 

If you don't want to override it - this method (getDrops) asks "quantityDropped" and "getItemDropped" for quantity and item of dropped item. You can override any of them to get what you want.

 

getItemDropped + quantityDropped

                          V

                    getDrops

                          V  <- applies forge event

                      finalList

                          V

              drops ItemStacks.

 

You can hook yourself anywhere.

1.7.10 is no longer supported by forge, you are on your own.

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.