mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Reduced crop densities
This commit is contained in:
parent
0fb3a115da
commit
5229bcc8e2
@ -602,14 +602,14 @@ impl Settlement {
|
|||||||
Crop::Pumpkin if roll(3, 2) == 0 => {
|
Crop::Pumpkin if roll(3, 2) == 0 => {
|
||||||
Some(BlockKind::Pumpkin)
|
Some(BlockKind::Pumpkin)
|
||||||
},
|
},
|
||||||
Crop::Flax if roll(4, 100) < 80 => Some(BlockKind::Flax),
|
Crop::Flax if roll(4, 2) == 80 => Some(BlockKind::Flax),
|
||||||
Crop::Carrot if roll(5, 100) < 80 => {
|
Crop::Carrot if roll(5, 2) == 80 => {
|
||||||
Some(BlockKind::Carrot)
|
Some(BlockKind::Carrot)
|
||||||
},
|
},
|
||||||
Crop::Tomato if roll(6, 100) < 80 => {
|
Crop::Tomato if roll(6, 2) == 0 => {
|
||||||
Some(BlockKind::Tomato)
|
Some(BlockKind::Tomato)
|
||||||
},
|
},
|
||||||
Crop::Radish if roll(7, 100) < 80 => {
|
Crop::Radish if roll(7, 2) == 0 => {
|
||||||
Some(BlockKind::Radish)
|
Some(BlockKind::Radish)
|
||||||
},
|
},
|
||||||
Crop::Sunflower => Some(BlockKind::Sunflower),
|
Crop::Sunflower => Some(BlockKind::Sunflower),
|
||||||
|
Loading…
Reference in New Issue
Block a user