diff options
| author | Eblo <7004497+Eblo@users.noreply.github.com> | 2026-01-31 09:21:30 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-31 09:21:30 -0500 |
| commit | 384c9d51803185d09e4382da9af71b51cb2d0e1f (patch) | |
| tree | f20d7f795e0400e61440f787b5adf4acbec7f9ff | |
| parent | 432d7d0ffd0c37b1db0bc1bb7ad195cc59bb57db (diff) | |
Correct Enemy Souls tooltip (#1527)
| -rw-r--r-- | mm/2s2h/Rando/Menu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/2s2h/Rando/Menu.cpp b/mm/2s2h/Rando/Menu.cpp index fdbac9b62..3f434f882 100644 --- a/mm/2s2h/Rando/Menu.cpp +++ b/mm/2s2h/Rando/Menu.cpp @@ -583,8 +583,8 @@ static void DrawItemsTab() { CheckboxOptions({ { .tooltip = "Shuffles the first drop from a non Boss Enemy." } })); CVarCheckbox( "Enemy Souls", Rando::StaticData::Options[RO_SHUFFLE_ENEMY_SOULS].cvar, - CheckboxOptions({ { .tooltip = "Adds the \"souls\" of regular enemies to the item pool. Enemy Souls are items " - "that must be found in order for their corresponding enemy to spawn.", + CheckboxOptions({ { .tooltip = "Adds the \"souls\" of regular enemies to the item pool. An enemy will be " + "immune to damage until its corresponding soul has been obtained.", .disabled = IncompatibleWithLogicSetting(RO_SHUFFLE_ENEMY_SOULS), .disabledTooltip = "Incompatible with current Logic Setting" } })); CVarCheckbox("Shuffle Time", Rando::StaticData::Options[RO_CLOCK_SHUFFLE].cvar, |
