From 8550c071a2b1101dd94a8ff9d4c1d021aa1bd2a5 Mon Sep 17 00:00:00 2001 From: Mathx2 Date: Mon, 24 Jan 2022 14:40:51 -0800 Subject: [PATCH] Revert Max revives Set the max revives back to 10 and start to convert it to a percentage of the total locations instead of a static value. --- worlds/ror2/Options.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worlds/ror2/Options.py b/worlds/ror2/Options.py index da5ab676..d9bfc275 100644 --- a/worlds/ror2/Options.py +++ b/worlds/ror2/Options.py @@ -11,10 +11,10 @@ class TotalLocations(Range): class TotalRevivals(Range): - """Number of `Dio's Best Friend` item put in the item pool.""" - displayname = "Total Revivals Available" + """Total Percentage of `Dio's Best Friend` item put in the item pool.""" + displayname = "Total Percentage Revivals Available" range_start = 0 - range_end = 50 + range_end = 10 default = 4