diff options
Diffstat (limited to 'utils')
-rw-r--r-- | utils/validate_config.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/validate_config.rb b/utils/validate_config.rb index 70f7fc2..2a765fb 100644 --- a/utils/validate_config.rb +++ b/utils/validate_config.rb | |||
@@ -50,7 +50,7 @@ directives = Set["entrances", "panels", "doors", "panel_doors", "paintings", "su | |||
50 | panel_directives = Set["id", "required_room", "required_door", "required_panel", "colors", "check", "exclude_reduce", "tag", "link", "subtag", "achievement", "copy_to_sign", "non_counting", "hunt", "location_name"] | 50 | panel_directives = Set["id", "required_room", "required_door", "required_panel", "colors", "check", "exclude_reduce", "tag", "link", "subtag", "achievement", "copy_to_sign", "non_counting", "hunt", "location_name"] |
51 | door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "event", "warp_id"] | 51 | door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "event", "warp_id"] |
52 | panel_door_directives = Set["panels", "item_name", "panel_group"] | 52 | panel_door_directives = Set["panels", "item_name", "panel_group"] |
53 | painting_directives = Set["id", "enter_only", "exit_only", "orientation", "required_door", "required", "required_when_no_doors", "move", "req_blocked", "req_blocked_when_no_doors"] | 53 | painting_directives = Set["id", "display_name", "enter_only", "exit_only", "orientation", "required_door", "required", "required_when_no_doors", "move", "req_blocked", "req_blocked_when_no_doors"] |
54 | 54 | ||
55 | non_counting = 0 | 55 | non_counting = 0 |
56 | 56 | ||
@@ -314,6 +314,10 @@ config.each do |room_name, room| | |||
314 | next | 314 | next |
315 | end | 315 | end |
316 | 316 | ||
317 | unless painting.include? "display_name" then | ||
318 | puts "#{room_name} - #{painting["id"] || "painting"} :::: Missing display name" | ||
319 | end | ||
320 | |||
317 | if painting.include?("orientation") then | 321 | if painting.include?("orientation") then |
318 | unless ["north", "south", "east", "west"].include? painting["orientation"] then | 322 | unless ["north", "south", "east", "west"].include? painting["orientation"] then |
319 | puts "#{room_name} - #{painting["id"] || "painting"} :::: Invalid orientation #{painting["orientation"]}" | 323 | puts "#{room_name} - #{painting["id"] || "painting"} :::: Invalid orientation #{painting["orientation"]}" |