diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-03 21:51:34 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-03 21:51:34 -0400 |
commit | bed3397a3acb42104cbf085455954313178d8433 (patch) | |
tree | f4cd9f318b578c85e7a23c05896e7505c4c86e4b /tools/datapacker | |
parent | c5edb28bd91936ede3c7d31a9d934ef5428fba40 (diff) | |
download | lingo2-archipelago-bed3397a3acb42104cbf085455954313178d8433.tar.gz lingo2-archipelago-bed3397a3acb42104cbf085455954313178d8433.tar.bz2 lingo2-archipelago-bed3397a3acb42104cbf085455954313178d8433.zip |
Added option for Daedalus roof access logic
Diffstat (limited to 'tools/datapacker')
-rw-r--r-- | tools/datapacker/main.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/datapacker/main.cpp b/tools/datapacker/main.cpp index d7e0b69..595647d 100644 --- a/tools/datapacker/main.cpp +++ b/tools/datapacker/main.cpp | |||
@@ -466,6 +466,11 @@ class DataPacker { | |||
466 | r_connection.set_required_door(door_id); | 466 | r_connection.set_required_door(door_id); |
467 | } | 467 | } |
468 | 468 | ||
469 | if (human_connection.has_roof_access()) { | ||
470 | f_connection.set_roof_access(human_connection.roof_access()); | ||
471 | r_connection.set_roof_access(human_connection.roof_access()); | ||
472 | } | ||
473 | |||
469 | container_.AddConnection(f_connection); | 474 | container_.AddConnection(f_connection); |
470 | if (!human_connection.oneway()) { | 475 | if (!human_connection.oneway()) { |
471 | container_.AddConnection(r_connection); | 476 | container_.AddConnection(r_connection); |