aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.c
diff options
context:
space:
mode:
authornathan <nathansmith@disroot.org>2025-10-12 07:04:19 +0000
committernathan <nathansmith@disroot.org>2025-10-12 07:04:19 +0000
commit3b8089936bf55c8ca62e80f66f9a413a39177995 (patch)
tree52692e8e9fce21c5bb0ea8221245c2f86149d530 /src/world.c
parent813ad580017878eca13b2f20d9f71b2e7b67b207 (diff)
downloadFindThings-3b8089936bf55c8ca62e80f66f9a413a39177995.tar.gz
FindThings-3b8089936bf55c8ca62e80f66f9a413a39177995.tar.bz2
FindThings-3b8089936bf55c8ca62e80f66f9a413a39177995.zip
Adding item list
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 42e3488..6901afe 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;
}