aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.c
diff options
context:
space:
mode:
authornathan <nathansmith@disroot.org>2025-10-15 03:09:39 +0000
committernathan <nathansmith@disroot.org>2025-10-15 03:09:39 +0000
commitadf84529a0f59bccea0e111b0f76d2eef3968971 (patch)
tree471bf4cbadee7b6016347df555ab70e8468e0bc1 /src/world.c
parent8b176566434e22f4ca0f4f2ebe255b1e38d84f5b (diff)
downloadFindThings-adf84529a0f59bccea0e111b0f76d2eef3968971.tar.gz
FindThings-adf84529a0f59bccea0e111b0f76d2eef3968971.tar.bz2
FindThings-adf84529a0f59bccea0e111b0f76d2eef3968971.zip
Why haven't I gone this already? Should I work on this project more?
Diffstat (limited to 'src/world.c')
-rw-r--r--src/world.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/world.c b/src/world.c
index 6901afe..42e3488 100644
--- a/src/world.c
+++ b/src/world.c
@@ -720,9 +720,9 @@ Seed generateWorldCharacters(World* world, Seed seed, WorldUID start)
{
WorldUID index = start;
- /* Entity ron = createEntity(RON, Vector3Scale(world->size, 0.5)); */
- /* placeEntityOnGround(&ron, world); */
- /* world->entities[index] = ron; */
+ Entity ron = createEntity(RON, Vector3Scale(world->size, 0.5));
+ placeEntityOnGround(&ron, world);
+ world->entities[index] = ron;
return seed;
}