diff options
Diffstat (limited to 'src/Blocks/BlockPlant.h')
-rw-r--r-- | src/Blocks/BlockPlant.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Blocks/BlockPlant.h b/src/Blocks/BlockPlant.h index 0155dc466..d7c5d9f83 100644 --- a/src/Blocks/BlockPlant.h +++ b/src/Blocks/BlockPlant.h @@ -75,10 +75,9 @@ protected: */ virtual PlantAction CanGrow(cChunk & a_Chunk, int a_RelX, int a_RelY, int a_RelZ) { - cFastRandom rand; // Plant can grow if it has the required amount of light, and it passes a random chance based on surrounding blocks PlantAction Action = HasEnoughLight(a_Chunk, a_RelX, a_RelY, a_RelZ); - if ((Action == paGrowth) && (rand.NextInt(GetGrowthChance(a_Chunk, a_RelX, a_RelY, a_RelZ)) != 0)) + if ((Action == paGrowth) && !GetRandomProvider().RandBool(1.0 / GetGrowthChance(a_Chunk, a_RelX, a_RelY, a_RelZ))) { Action = paStay; } |