diff --git a/CHANGELOG.md b/CHANGELOG.md index bd52770..3d7edb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/MuzikaGromche/Plugin.cs b/MuzikaGromche/Plugin.cs index ebb9966..c2e1945 100644 --- a/MuzikaGromche/Plugin.cs +++ b/MuzikaGromche/Plugin.cs @@ -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())));