Fixed plants sometimes dropping completely nonsensical seed metas

This commit is contained in:
Ellpeck 2015-12-22 18:10:49 +01:00
parent 924011768d
commit 3378ff088f

View file

@ -120,7 +120,7 @@ public class BlockPlant extends BlockCrops{
@Override
public int damageDropped(int meta){
return this.returnMeta;
return meta >= 7 ? this.returnMeta : 0;
}
@Override