Made BlockCrops.getDrops call its super method

This commit is contained in:
Adubbz 2013-12-28 23:15:09 +11:00
parent f075264d6f
commit 164fa8f646
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@
+ @Override
+ public ArrayList<ItemStack> getDrops(World world, int x, int y, int z, int metadata, int fortune)
+ {
+ ArrayList<ItemStack> ret = new ArrayList<ItemStack>();
+ ArrayList<ItemStack> ret = super.getDrops(world, x, y, z, metadata, fortune);
+
+ if (metadata >= 7)
+ {