This commit is contained in:
modmuss50 2017-01-17 22:12:30 +00:00
parent e93c580528
commit 2c53c16010
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA

View file

@ -30,7 +30,7 @@ public class BlockMFE extends BlockEnergyStorage {
@Override
public List<ItemStack> getDrops(final IBlockAccess world, final BlockPos pos, final IBlockState state, final int fortune) {
final ArrayList<ItemStack> list = new ArrayList<>();
list.add(new ItemStack(ModBlocks.MACHINE_FRAMES, 1, 1));
list.add(new ItemStack(ModBlocks.MACHINE_FRAMES, 0, 1));
return list;
}
}