From 63a6c6d38fac1f2d14eb4971fc4cb7f522e2cf08 Mon Sep 17 00:00:00 2001 From: MrPerson Date: Mon, 9 Dec 2019 08:51:08 -0600 Subject: [PATCH] Removes an unused global list (#48170) --- code/datums/components/uplink.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/datums/components/uplink.dm b/code/datums/components/uplink.dm index 8116f156d2e..38e6267abab 100644 --- a/code/datums/components/uplink.dm +++ b/code/datums/components/uplink.dm @@ -1,5 +1,3 @@ -GLOBAL_LIST_EMPTY(uplinks) - #define PEN_ROTATIONS 2 /** @@ -51,7 +49,6 @@ GLOBAL_LIST_EMPTY(uplinks) else if(istype(parent, /obj/item/pen)) RegisterSignal(parent, COMSIG_PEN_ROTATED, .proc/pen_rotation) - GLOB.uplinks += src uplink_items = get_uplink_items(_gamemode, TRUE, allow_restricted) if(_owner) @@ -81,7 +78,6 @@ GLOBAL_LIST_EMPTY(uplinks) purchase_log.MergeWithAndDel(U.purchase_log) /datum/component/uplink/Destroy() - GLOB.uplinks -= src gamemode = null purchase_log = null return ..()