From 0386d9f6d2987cd6e277a5570a81cb00b99b113b Mon Sep 17 00:00:00 2001 From: PoryGone <98504756+PoryGone@users.noreply.github.com> Date: Fri, 24 Mar 2023 19:22:47 -0400 Subject: [PATCH] Fix SA2B Option Display Name (#1591) --- worlds/sa2b/Options.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/sa2b/Options.py b/worlds/sa2b/Options.py index 0a9f2d16..f4dfd833 100644 --- a/worlds/sa2b/Options.py +++ b/worlds/sa2b/Options.py @@ -486,9 +486,9 @@ class RingLoss(Choice): How taking damage is handled Classic: You lose all of your rings when hit Modern: You lose 20 rings when hit - OHKO: You die immediately when hit (NOTE: Some Hard Logic tricks require damage boosts!) + OHKO: You die immediately when hit (NOTE: Some Hard Logic tricks may require damage boosts!) """ - display_name = "SADX Music" + display_name = "Ring Loss" option_classic = 0 option_modern = 1 option_ohko = 2