Lingo: Expand sphere 1 under restrictive conditions (#3190)
This commit is contained in:
committed by
GitHub
parent
ea6235e0d9
commit
fc571ba356
@@ -10,6 +10,7 @@ class LocationClassification(Flag):
|
||||
normal = auto()
|
||||
reduced = auto()
|
||||
insanity = auto()
|
||||
small_sphere_one = auto()
|
||||
|
||||
|
||||
class LocationData(NamedTuple):
|
||||
@@ -47,6 +48,9 @@ def load_location_data():
|
||||
if not panel.exclude_reduce:
|
||||
classification |= LocationClassification.reduced
|
||||
|
||||
if room_name == "Starting Room":
|
||||
classification |= LocationClassification.small_sphere_one
|
||||
|
||||
ALL_LOCATION_TABLE[location_name] = \
|
||||
LocationData(get_panel_location_id(room_name, panel_name), room_name,
|
||||
[RoomAndPanel(None, panel_name)], classification)
|
||||
|
||||
Reference in New Issue
Block a user