Remove total_items option.

This commit is contained in:
Hussein Farran
2021-09-01 17:35:16 -04:00
committed by Fabian Dill
parent c73b994305
commit 63c9bea724
3 changed files with 9 additions and 14 deletions

View File

@@ -9,13 +9,6 @@ class TotalLocations(Range):
range_end = 50
default = 15
class TotalItems(Range):
"""Number of items which are added to the multiworld on behalf of the Risk of Rain player."""
displayname = "Total Items"
range_start = 10
range_end = 50
default = 30
class TotalRevivals(Range):
"""Number of `Dio's Best Friend` item put in the item pool."""
@@ -50,6 +43,5 @@ ror2_options: typing.Dict[str, type(Option)] = {
"total_revivals": TotalRevivals,
"start_with_revive": StartWithRevive,
"item_pickup_step": ItemPickupStep,
"total_items": TotalItems,
"enable_lunar": AllowLunarItems
}