The Witness: Rename some *horrendously* named variables (#4258)
* Rename all instances of 'multi' to 'progressive' and all instances of 'prog' to 'progression' * We do a little reordering * More * One more
This commit is contained in:
@@ -55,7 +55,7 @@ class WitnessPlayerItems:
|
||||
name: data for (name, data) in self.item_data.items()
|
||||
if data.classification not in
|
||||
{ItemClassification.progression, ItemClassification.progression_skip_balancing}
|
||||
or name in player_logic.PROG_ITEMS_ACTUALLY_IN_THE_GAME
|
||||
or name in player_logic.PROGRESSION_ITEMS_ACTUALLY_IN_THE_GAME
|
||||
}
|
||||
|
||||
# Downgrade door items
|
||||
@@ -76,7 +76,7 @@ class WitnessPlayerItems:
|
||||
}
|
||||
for item_name, item_data in progression_dict.items():
|
||||
if isinstance(item_data.definition, ProgressiveItemDefinition):
|
||||
num_progression = len(self._logic.MULTI_LISTS[item_name])
|
||||
num_progression = len(self._logic.PROGRESSIVE_LISTS[item_name])
|
||||
self._mandatory_items[item_name] = num_progression
|
||||
else:
|
||||
self._mandatory_items[item_name] = 1
|
||||
|
||||
Reference in New Issue
Block a user