From 3b8089936bf55c8ca62e80f66f9a413a39177995 Mon Sep 17 00:00:00 2001 From: nathan Date: Sun, 12 Oct 2025 01:04:19 -0600 Subject: Adding item list --- src/world.c | 6 +++--- src/world.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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 -- cgit v1.2.3