about summary refs log tree commit diff stats
path: root/tools/assign_ids/main.cpp
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-11-01 12:18:25 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-11-01 12:18:25 -0400
commit21013ec0d1e3953276f11bd8cce12f33d46a33ec (patch)
treeb042bee93ad8d052db581bb04f6b5ddfd2547a72 /tools/assign_ids/main.cpp
parent8d92a32ada857dd0ce3d0e4a17aede7558b6a1b3 (diff)
downloadlingo2-archipelago-21013ec0d1e3953276f11bd8cce12f33d46a33ec.tar.gz
lingo2-archipelago-21013ec0d1e3953276f11bd8cce12f33d46a33ec.tar.bz2
lingo2-archipelago-21013ec0d1e3953276f11bd8cce12f33d46a33ec.zip
(Almost) all panels are locations or connections now
Diffstat (limited to 'tools/assign_ids/main.cpp')
-rw-r--r--tools/assign_ids/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/assign_ids/main.cpp b/tools/assign_ids/main.cpp index 8010a9a..4cf7c3f 100644 --- a/tools/assign_ids/main.cpp +++ b/tools/assign_ids/main.cpp
@@ -112,7 +112,8 @@ class AssignIds {
112 112
113 void ProcessDoor(const HumanDoor& h_door, 113 void ProcessDoor(const HumanDoor& h_door,
114 const std::string& current_map_name) { 114 const std::string& current_map_name) {
115 if (h_door.type() == DoorType::EVENT && !h_door.latch()) { 115 if (h_door.type() == DoorType::EVENT && !h_door.latch() &&
116 !h_door.legacy_location()) {
116 return; 117 return;
117 } 118 }
118 119