Made BlockCrops.getDrops call its super method
This commit is contained in:
parent
f075264d6f
commit
164fa8f646
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
+ {
|
||||
|
|
Loading…
Reference in a new issue