From 71320d2b4a83bff2f06e552fb9e7a35476eb9bce Mon Sep 17 00:00:00 2001 From: Gandalf <9026500+Gandalf2k15@users.noreply.github.com> Date: Wed, 26 Apr 2023 01:07:58 +0100 Subject: [PATCH] Crosslink Update (#20759) Update chat_link.dm --- modular_skyrat/modules/server_overflow/code/chat_link.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modular_skyrat/modules/server_overflow/code/chat_link.dm b/modular_skyrat/modules/server_overflow/code/chat_link.dm index 862a8529bcc..843ec276ac5 100644 --- a/modular_skyrat/modules/server_overflow/code/chat_link.dm +++ b/modular_skyrat/modules/server_overflow/code/chat_link.dm @@ -6,7 +6,7 @@ var/list/ooc_information = list() ooc_information["server_name"] = CONFIG_GET(string/cross_server_name) ? CONFIG_GET(string/cross_server_name) : station_name() ooc_information["expected_name"] = exp_name - send2otherserver(html_decode(ooc_information["server_name"]), message, "incoming_ooc_message", "all", additional_data = ooc_information) + send2otherserver(source = html_decode(ooc_information["server_name"]), msg = message, type = "incoming_ooc_message", additional_data = ooc_information) return TRUE /datum/world_topic/incoming_ooc_message @@ -37,7 +37,7 @@ var/list/asay_information = list() asay_information["server_name"] = CONFIG_GET(string/cross_server_name) ? CONFIG_GET(string/cross_server_name) : station_name() asay_information["expected_name"] = exp_name - send2otherserver(html_decode(asay_information["server_name"]), message, "incoming_asay_message", "all", additional_data = asay_information) + send2otherserver(source = html_decode(asay_information["server_name"]), msg = message, type = "incoming_asay_message", additional_data = asay_information) return TRUE /datum/world_topic/incoming_asay_message @@ -81,7 +81,7 @@ var/list/asay_information = list() asay_information["server_name"] = CONFIG_GET(string/cross_server_name) ? CONFIG_GET(string/cross_server_name) : station_name() asay_information["expected_name"] = exp_name - send2otherserver(html_decode(asay_information["server_name"]), message, "incoming_help_request", "all", additional_data = asay_information) + send2otherserver(source = html_decode(asay_information["server_name"]), msg = message, type = "incoming_help_request", additional_data = asay_information) return TRUE /datum/world_topic/incoming_help_request