From f9abf2daa1834eea6d5b67986c8971f4ef1a499f Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 12 Jul 2023 08:26:38 +0200 Subject: [PATCH] [MIRROR] Fixes quantum relays not processing [MDB IGNORE] (#22334) * Fixes quantum relays not processing (#76667) ## About The Pull Request Replaces a return ..() with a return TRUE in the process(), removing the PROCESS_KILL returb ## Why It's Good For The Game Thinks working are always nice. ## Changelog :cl: fix: Quantum relays now process, meaning DOS attacks actually function /:cl: * Fixes quantum relays not processing --------- Co-authored-by: nikothedude <59709059+nikothedude@users.noreply.github.com> Co-authored-by: Bloop --- code/modules/NTNet/relays.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/NTNet/relays.dm b/code/modules/NTNet/relays.dm index a00d9c5d1b4..abe777f276f 100644 --- a/code/modules/NTNet/relays.dm +++ b/code/modules/NTNet/relays.dm @@ -86,7 +86,7 @@ GLOBAL_LIST_EMPTY(ntnet_relays) set_dos_failure(FALSE) update_appearance() SSmodular_computers.add_log("Quantum relay switched from overload recovery mode to normal operation mode.") - return ..() + return TRUE /obj/machinery/ntnet_relay/ui_interact(mob/user, datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui)