diff options
author | nathan <nathansmith@disroot.org> | 2025-08-04 06:35:17 +0000 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-08-04 06:35:17 +0000 |
commit | 5a689b3db1e84cc8a6aac337ec5d8544c7e9c40e (patch) | |
tree | cdd88dded10260b970c0946dde8d0f93f71b6516 /src/world.h | |
parent | 1163519c148d0cc7d885630995874af2747419d0 (diff) | |
download | FindThings-5a689b3db1e84cc8a6aac337ec5d8544c7e9c40e.tar.gz FindThings-5a689b3db1e84cc8a6aac337ec5d8544c7e9c40e.tar.bz2 FindThings-5a689b3db1e84cc8a6aac337ec5d8544c7e9c40e.zip |
Better area clearing for pond
Diffstat (limited to 'src/world.h')
-rw-r--r-- | src/world.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/world.h b/src/world.h index 149e7dd..a837dae 100644 --- a/src/world.h +++ b/src/world.h @@ -26,6 +26,9 @@ // Places. #define PLACE_POND_MIN_DISTANCE 400 // Pond distance from center. #define PLACE_POND_MAX_DISTANCE 600 +#define PLACE_POND_DEPTH 10 +#define PLACE_POND_OUTER_AREA 25 +#define PLACE_POND_WALKING_AREA 7 // UID for anything in the world. typedef int16_t WorldUID; |