aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--design.org17
-rw-r--r--src/world.c6
-rw-r--r--src/world.h2
3 files changed, 21 insertions, 4 deletions
diff --git a/design.org b/design.org
index ffdd039..c6cf2d3 100644
--- a/design.org
+++ b/design.org
@@ -74,6 +74,23 @@ said you will have your neck snapped no matter what you do.
19. Laptop running Haiku OS.
20. Nuclear Ninja Tortoise.
+* Rest of the items [2/3]
++ [X] Old mint.
++ [X] Sticky nickel.
++ [ ] Bent screw
++ [ ] Left handed screw driver.
++ [ ] Foam cup.
++ [ ] Plastic cup.
++ [ ] Receipt.
++ [ ] Used tea bag.
++ [ ] ABC gum.
++ [ ] bullet shell.
++ [ ] Lighter (out of lighter fluid).
++ [ ] Emergency radio.
++ [ ] Calculator.
++ [ ] Copy of /The Winston Niles Rumfoord Pocket History of Mars/.
++ [ ] Rotten eye ball.
+
* Design and programming
+ It will have a open world making heavy use of height maps.
+ No real physics, just dummy physics.
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