diff options
| author | nathan <nathansmith@disroot.org> | 2025-10-12 07:04:19 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2025-10-12 07:04:19 +0000 |
| commit | 3b8089936bf55c8ca62e80f66f9a413a39177995 (patch) | |
| tree | 52692e8e9fce21c5bb0ea8221245c2f86149d530 /src | |
| parent | 813ad580017878eca13b2f20d9f71b2e7b67b207 (diff) | |
| download | FindThings-3b8089936bf55c8ca62e80f66f9a413a39177995.tar.gz FindThings-3b8089936bf55c8ca62e80f66f9a413a39177995.tar.bz2 FindThings-3b8089936bf55c8ca62e80f66f9a413a39177995.zip | |
Adding item list
Diffstat (limited to 'src')
| -rw-r--r-- | src/world.c | 6 | ||||
| -rw-r--r-- | src/world.h | 2 |
2 files changed, 4 insertions, 4 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; } diff --git a/src/world.h b/src/world.h index 93bcb38..456d68a 100644 --- a/src/world.h +++ b/src/world.h @@ -32,7 +32,7 @@ #define PLACE_POND_WALKING_AREA 7 // Characters. -#define WORLD_CHARACTER_COUNT 1 +#define WORLD_CHARACTER_COUNT 0 #define SAMANTHA_OFFSET (Vector3){0.0, 0.0, 2.0} #define SAMANTHAS_SPOT_TRASHCAN_COUNT 5 |
