From 93fd4adda9d5aaf63460f0e98a04ebd3291352b8 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 26 Mar 2025 20:32:39 -0400 Subject: Lingo: Add painting display names (#4707) * Lingo: Add painting display names * Reordered some paintings * Update generated.dat --- utils/validate_config.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'utils/validate_config.rb') 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 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"] door_directives = Set["id", "painting_id", "panels", "item_name", "item_group", "location_name", "skip_location", "skip_item", "door_group", "include_reduce", "event", "warp_id"] panel_door_directives = Set["panels", "item_name", "panel_group"] -painting_directives = Set["id", "enter_only", "exit_only", "orientation", "required_door", "required", "required_when_no_doors", "move", "req_blocked", "req_blocked_when_no_doors"] +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"] non_counting = 0 @@ -314,6 +314,10 @@ config.each do |room_name, room| next end + unless painting.include? "display_name" then + puts "#{room_name} - #{painting["id"] || "painting"} :::: Missing display name" + end + if painting.include?("orientation") then unless ["north", "south", "east", "west"].include? painting["orientation"] then puts "#{room_name} - #{painting["id"] || "painting"} :::: Invalid orientation #{painting["orientation"]}" -- cgit 1.4.1