A few bug fixes. Part of major refactor.

This commit is contained in:
Storm Dragon
2026-01-21 18:14:26 -05:00
parent 129cd4a656
commit af9a402e80
18 changed files with 660 additions and 433 deletions

View File

@@ -2,6 +2,7 @@
int MAP_SIZE = 35;
const int BASE_END = 4; // 0-4
const int GRASS_END = 19; // 5-19
const int GRAVEL_START = 20; // 20-34
const int GRAVEL_END = 34; // 20-34
// Expansion configuration
@@ -149,7 +150,7 @@ const float FLYING_CREATURE_FADE_OUT_MIN_VOLUME = -40.0; // dB
const int MOUNTAIN_SIZE = 60;
const int MOUNTAIN_MIN_ELEVATION = 0;
const int MOUNTAIN_MAX_ELEVATION = 40;
const int MOUNTAIN_STEEP_THRESHOLD = 6;
const int MOUNTAIN_STEEP_THRESHOLD = 7;
const int MOUNTAIN_MAX_SLOPE = 20;
const int ROPE_CLIMB_SPEED = 1000;
const int MOUNTAIN_STREAM_SOUND_RANGE = 7;