diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-03-21 10:46:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-21 16:46:53 +0100 |
commit | cb83f8d340ee13746ce2c63c7cd1b247244eb65a (patch) | |
tree | f8a25fead6c0089dc78c7335b18518651cc7fad8 /utils/validate_config.rb | |
parent | e016228d2b76fa367889c9d98d6eb9e783f98cb4 (diff) | |
download | lingo-apworld-cb83f8d340ee13746ce2c63c7cd1b247244eb65a.tar.gz lingo-apworld-cb83f8d340ee13746ce2c63c7cd1b247244eb65a.tar.bz2 lingo-apworld-cb83f8d340ee13746ce2c63c7cd1b247244eb65a.zip |
Lingo: Add item/location groups (#2789)
Diffstat (limited to 'utils/validate_config.rb')
-rw-r--r-- | utils/validate_config.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/validate_config.rb b/utils/validate_config.rb index 96ed9fc..ae0ac61 100644 --- a/utils/validate_config.rb +++ b/utils/validate_config.rb | |||
@@ -42,7 +42,7 @@ door_groups = {} | |||
42 | 42 | ||
43 | directives = Set["entrances", "panels", "doors", "paintings", "progression"] | 43 | directives = Set["entrances", "panels", "doors", "paintings", "progression"] |
44 | panel_directives = Set["id", "required_room", "required_door", "required_panel", "colors", "check", "exclude_reduce", "tag", "link", "subtag", "achievement", "copy_to_sign", "non_counting", "hunt"] | 44 | panel_directives = Set["id", "required_room", "required_door", "required_panel", "colors", "check", "exclude_reduce", "tag", "link", "subtag", "achievement", "copy_to_sign", "non_counting", "hunt"] |
45 | door_directives = Set["id", "painting_id", "panels", "item_name", "location_name", "skip_location", "skip_item", "group", "include_reduce", "junk_item", "event"] | 45 | door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "junk_item", "event"] |
46 | painting_directives = Set["id", "enter_only", "exit_only", "orientation", "required_door", "required", "required_when_no_doors", "move", "req_blocked", "req_blocked_when_no_doors"] | 46 | painting_directives = Set["id", "enter_only", "exit_only", "orientation", "required_door", "required", "required_when_no_doors", "move", "req_blocked", "req_blocked_when_no_doors"] |
47 | 47 | ||
48 | non_counting = 0 | 48 | non_counting = 0 |