Change config value for Override Spawn Rates to true by default

This commit is contained in:
ivan tkachenko 2025-08-22 16:09:01 +03:00
parent 9d23fd5b95
commit 8710df7525
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
- Improved playback experience: use precise DSP time and up-front scheduing for seamless audio stitching, add custom Audio Sources to improve reliability.
- Removed remaining CSync code and package references even from debug builds.
- Downgraded LobbyCompatibility to optional dependency.
- Toggled config option to increase certain spawn rate to ON by default.
## MuzikaGromche 1337.420.9001 - Multiverse Edition

View File

@ -1852,7 +1852,7 @@ namespace MuzikaGromche
new ConfigDescription("When choosing tracks at random, skip the ones with Explicit Content/Lyrics."));
LethalConfigManager.AddConfigItem(new BoolCheckBoxConfigItem(SkipExplicitTracks, Default(new BoolCheckBoxOptions())));
OverrideSpawnRates = configFile.Bind("General", "Override Spawn Rates", false,
OverrideSpawnRates = configFile.Bind("General", "Override Spawn Rates", true,
new ConfigDescription("Deviate from vanilla spawn rates to experience content of this mod more often."));
LethalConfigManager.AddConfigItem(new BoolCheckBoxConfigItem(OverrideSpawnRates, Default(new BoolCheckBoxOptions())));