From ff713680d3b4041a8e2f56d5688ca1e0e4d1ba8b Mon Sep 17 00:00:00 2001 From: Paxilmaniac <82386923+Paxilmaniac@users.noreply.github.com> Date: Mon, 6 Jan 2025 10:11:59 -0600 Subject: [PATCH] uses the nt frequency define for loaded modlinks instead of just "NT" (#88813) ## About The Pull Request see title ## Why It's Good For The Game if the frequency is ever changed from NT by default for any reason, pre-loaded scryers wont be able to call normal modsuits because they dont use the define without this ## Changelog :cl: code: modlink scryers use the nt frequency define rather than just plain text doing it themselves /:cl: --- code/modules/mod/mod_link.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mod/mod_link.dm b/code/modules/mod/mod_link.dm index aef563bacef..7f503e00939 100644 --- a/code/modules/mod/mod_link.dm +++ b/code/modules/mod/mod_link.dm @@ -317,7 +317,7 @@ on_user_set_dir_generic(mod_link, newdir || SOUTH) /obj/item/clothing/neck/link_scryer/loaded - starting_frequency = "NT" + starting_frequency = MODLINK_FREQ_NANOTRASEN /obj/item/clothing/neck/link_scryer/loaded/Initialize(mapload) . = ..()