summary refs log tree commit diff stats
path: root/utils/validate_config.rb
diff options
context:
space:
mode:
Diffstat (limited to 'utils/validate_config.rb')
-rw-r--r--utils/validate_config.rb6
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
50panel_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"] 50panel_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"]
51door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "event", "warp_id"] 51door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "event", "warp_id"]
52panel_door_directives = Set["panels", "item_name", "panel_group"] 52panel_door_directives = Set["panels", "item_name", "panel_group"]
53painting_directives = Set["id", "enter_only", "exit_only", "orientation", "required_door", "required", "required_when_no_doors", "move", "req_blocked", "req_blocked_when_no_doors"] 53painting_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
55non_counting = 0 55non_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"]}"