Change config value for Override Spawn Rates to true by default
This commit is contained in:
parent
9d23fd5b95
commit
8710df7525
|
@ -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
|
||||
|
||||
|
|
|
@ -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())));
|
||||
|
||||
|
|
Loading…
Reference in New Issue