mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-08-20 18:31:23 +00:00
Tall Grass now drops Melon and Pumpkin seeds with a probability of 1/15
This commit is contained in:
parent
02150da862
commit
35119befd9
@ -56,6 +56,12 @@ class TallGrassBlock extends FlowableBlock{
|
||||
if(mt_rand(1,15) === 1){//Beetroot Seeds
|
||||
$drops[] = array(BEETROOT_SEEDS, 0, 1);
|
||||
}
|
||||
if(mt_rand(1,20) === 1){//Melon Seeds
|
||||
$drops[] = array(MELON_SEEDS, 0, 1);
|
||||
}
|
||||
if(mt_rand(1,15) === 1){//Melon Seeds
|
||||
$drops[] = array(PUMPKIN_SEEDS, 0, 1);
|
||||
}
|
||||
return $drops;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user