diff options
Diffstat (limited to 'src/world.c')
-rw-r--r-- | src/world.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/world.c b/src/world.c index a576e24..6b8d60b 100644 --- a/src/world.c +++ b/src/world.c @@ -335,8 +335,8 @@ Seed generateWorldPlants(World* world, Seed seed) FT_RANDOM16(seed); // Get id for plant. - EntityId plants[] = {TREE, BUSH}; - size_t plantsSize = 2; + EntityId plants[] = {TREE, BUSH, FLOWER}; + size_t plantsSize = 3; EntityId id = plants[seed % plantsSize]; // Get position. |