summary refs log tree commit diff stats
path: root/datatypes.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-03-21 10:46:53 -0500
committerGitHub <noreply@github.com>2024-03-21 16:46:53 +0100
commitcb83f8d340ee13746ce2c63c7cd1b247244eb65a (patch)
treef8a25fead6c0089dc78c7335b18518651cc7fad8 /datatypes.py
parente016228d2b76fa367889c9d98d6eb9e783f98cb4 (diff)
downloadlingo-apworld-cb83f8d340ee13746ce2c63c7cd1b247244eb65a.tar.gz
lingo-apworld-cb83f8d340ee13746ce2c63c7cd1b247244eb65a.tar.bz2
lingo-apworld-cb83f8d340ee13746ce2c63c7cd1b247244eb65a.zip
Lingo: Add item/location groups (#2789)
Diffstat (limited to 'datatypes.py')
-rw-r--r--datatypes.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/datatypes.py b/datatypes.py index eb5c879..e9bf0a3 100644 --- a/datatypes.py +++ b/datatypes.py
@@ -32,9 +32,10 @@ class Door(NamedTuple):
32 has_doors: bool 32 has_doors: bool
33 painting_ids: List[str] 33 painting_ids: List[str]
34 event: bool 34 event: bool
35 group: Optional[str] 35 door_group: Optional[str]
36 include_reduce: bool 36 include_reduce: bool
37 junk_item: bool 37 junk_item: bool
38 item_group: Optional[str]
38 39
39 40
40class Panel(NamedTuple): 41class Panel(NamedTuple):