aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.c
diff options
context:
space:
mode:
authornathan <nathansmith@disroot.org>2025-07-27 10:46:59 +0000
committernathan <nathansmith@disroot.org>2025-07-27 10:46:59 +0000
commit9b3bbf4ef7c26c1267e8ea99024d9d1acd7f1376 (patch)
tree0035940891d844047f693ab6137803f543025acb /src/world.c
parent49a0487a9c02a4bcd9da965400e393820ba6372f (diff)
downloadFindThings-9b3bbf4ef7c26c1267e8ea99024d9d1acd7f1376.tar.gz
FindThings-9b3bbf4ef7c26c1267e8ea99024d9d1acd7f1376.tar.bz2
FindThings-9b3bbf4ef7c26c1267e8ea99024d9d1acd7f1376.zip
Flower
Diffstat (limited to 'src/world.c')
-rw-r--r--src/world.c4
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.