From 2115232d2fec48fceef052b476af4afb02746ad1 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Fri, 19 Sep 2025 11:04:48 -0400 Subject: Added strict purple/cyan ending options --- tools/datapacker/main.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'tools/datapacker') 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 { r_connection.set_roof_access(human_connection.roof_access()); } + if (human_connection.has_purple_ending()) { + f_connection.set_purple_ending(human_connection.purple_ending()); + r_connection.set_purple_ending(human_connection.purple_ending()); + } + + if (human_connection.has_cyan_ending()) { + f_connection.set_cyan_ending(human_connection.cyan_ending()); + r_connection.set_cyan_ending(human_connection.cyan_ending()); + } + container_.AddConnection(f_connection); if (!human_connection.oneway()) { container_.AddConnection(r_connection); -- cgit 1.4.1