From 8710df7525d4f9efb0f701b348b62fd410c0e736 Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Fri, 22 Aug 2025 16:09:01 +0300 Subject: [PATCH] Change config value for Override Spawn Rates to true by default --- CHANGELOG.md | 1 + MuzikaGromche/Plugin.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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())));