diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-19 11:04:48 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-19 11:04:48 -0400 |
commit | 2115232d2fec48fceef052b476af4afb02746ad1 (patch) | |
tree | 9d749646b51ad3da524dc9f6b71407bfa57541ad /tools/datapacker | |
parent | 1aca0f7e9ffa215ceb877ca55d667b4ee919b07e (diff) | |
download | lingo2-archipelago-2115232d2fec48fceef052b476af4afb02746ad1.tar.gz lingo2-archipelago-2115232d2fec48fceef052b476af4afb02746ad1.tar.bz2 lingo2-archipelago-2115232d2fec48fceef052b476af4afb02746ad1.zip |
Added strict purple/cyan ending options
Diffstat (limited to 'tools/datapacker')
-rw-r--r-- | tools/datapacker/main.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/datapacker/main.cpp b/tools/datapacker/main.cpp index c13a4df..596259b 100644 --- a/tools/datapacker/main.cpp +++ b/tools/datapacker/main.cpp | |||
@@ -473,6 +473,16 @@ class DataPacker { | |||
473 | r_connection.set_roof_access(human_connection.roof_access()); | 473 | r_connection.set_roof_access(human_connection.roof_access()); |
474 | } | 474 | } |
475 | 475 | ||
476 | if (human_connection.has_purple_ending()) { | ||
477 | f_connection.set_purple_ending(human_connection.purple_ending()); | ||
478 | r_connection.set_purple_ending(human_connection.purple_ending()); | ||
479 | } | ||
480 | |||
481 | if (human_connection.has_cyan_ending()) { | ||
482 | f_connection.set_cyan_ending(human_connection.cyan_ending()); | ||
483 | r_connection.set_cyan_ending(human_connection.cyan_ending()); | ||
484 | } | ||
485 | |||
476 | container_.AddConnection(f_connection); | 486 | container_.AddConnection(f_connection); |
477 | if (!human_connection.oneway()) { | 487 | if (!human_connection.oneway()) { |
478 | container_.AddConnection(r_connection); | 488 | container_.AddConnection(r_connection); |