mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 23:28:35 +01:00
Fixed plants sometimes dropping completely nonsensical seed metas
This commit is contained in:
parent
924011768d
commit
3378ff088f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue