From abd1ab9468163e7e66867649e91304927af14997 Mon Sep 17 00:00:00 2001 From: LiquidCat64 Date: Thu, 12 Sep 2024 14:32:46 -0600 Subject: [PATCH] Better option groups. --- worlds/cvcotm/options.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/worlds/cvcotm/options.py b/worlds/cvcotm/options.py index 7ddb4aaf3724..2fea0ee32161 100644 --- a/worlds/cvcotm/options.py +++ b/worlds/cvcotm/options.py @@ -4,7 +4,7 @@ class IgnoreCleansing(Toggle): """ - Makes the Cleansing not logically expected to traverse the water in Underground Waterway. + Removes the logical requirement for the Cleansing to go beyond the Underground Waterway entrance rooms. You may be required to brave the harmful water without it. """ display_name = "Ignore Cleansing" @@ -270,9 +270,10 @@ class CVCotMOptions(PerGameCommonOptions): cvcotm_option_groups = [ - OptionGroup("gameplay tweaks", [ - AutoRun, DSSPatch, AlwaysAllowSpeedDash, PlutoGriffinAirSpeed, BuffRangedFamiliars, BuffSubWeapons, - BuffShooterStrength, ItemDropRandomization, HalveDSSCardsPlaced, Countdown, SubWeaponShuffle, - DisableBattleArenaMPDrain, SkipDialogues, SkipTutorials, BattleArenaMusic, DeathLink - ]) + OptionGroup("difficulty", [ + BuffRangedFamiliars, BuffSubWeapons, BuffShooterStrength, ItemDropRandomization, IgnoreCleansing, + HalveDSSCardsPlaced, SubWeaponShuffle, EarlyDouble, DeathLink]), + OptionGroup("quality of life", [ + AutoRun, DSSPatch, AlwaysAllowSpeedDash, PlutoGriffinAirSpeed, Countdown, DisableBattleArenaMPDrain, + SkipDialogues, SkipTutorials, BattleArenaMusic]) ]