From 92c2a8d6fb641f0d825cbff62c57cd4c1bf94ac5 Mon Sep 17 00:00:00 2001 From: nikothedude <59709059+nikothedude@users.noreply.github.com> Date: Mon, 10 Jul 2023 04:39:09 -0400 Subject: [PATCH] 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: --- 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)