Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Nullable
- public Item getItemDropped(IBlockState state, Random rand, int fortune)
- {
- if (state.getValue(BlockDesertMulti.TYPE) == EnumDesertBlocks.one1)
- {
- System.out.println("here?");
- return Items.COAL;
- }
- if (state.getValue(BlockDesertMulti.TYPE) == EnumDesertBlocks.one2)
- {
- System.out.println("here!");
- return IntegratedItems.UncutLBGem;
- }
- if (state.getValue(BlockDesertMulti.TYPE) == EnumDesertBlocks.one3)
- {
- System.out.println("here@");
- return IntegratedItems.UncutDBGem;
- }
- else
- {
- System.out.println("why here?");
- return (Item) state;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment