diff options
Diffstat (limited to 'tools/validator/human_processor.cpp')
-rw-r--r-- | tools/validator/human_processor.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/validator/human_processor.cpp b/tools/validator/human_processor.cpp index 5a7e78a..f53dc79 100644 --- a/tools/validator/human_processor.cpp +++ b/tools/validator/human_processor.cpp | |||
@@ -337,6 +337,11 @@ class HumanProcessor { | |||
337 | DoorInfo& other_door_info = info_.doors[complete_door_identifier]; | 337 | DoorInfo& other_door_info = info_.doors[complete_door_identifier]; |
338 | other_door_info.doors_referenced_by.push_back(door_identifier); | 338 | other_door_info.doors_referenced_by.push_back(door_identifier); |
339 | } | 339 | } |
340 | |||
341 | for (const std::string& ei : h_door.endings()) { | ||
342 | EndingInfo& ending_info = info_.endings[ei]; | ||
343 | ending_info.doors_referenced_by.push_back(door_identifier); | ||
344 | } | ||
340 | } | 345 | } |
341 | 346 | ||
342 | void ProcessConnectionsFile(std::filesystem::path path, | 347 | void ProcessConnectionsFile(std::filesystem::path path, |