From 864f9b324434ee8d8b9311ec4f7308ab15b6f9b2 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 6 Apr 2020 18:59:48 +0100 Subject: [PATCH] except this times its in the right order --- code/datums/components/uplink.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/uplink.dm b/code/datums/components/uplink.dm index 0e9fb9d1f7..7df570587d 100644 --- a/code/datums/components/uplink.dm +++ b/code/datums/components/uplink.dm @@ -119,13 +119,13 @@ GLOBAL_LIST_EMPTY(uplinks) return active = TRUE if(user) - ui_interact(user) //update the saved population var/previous_player_population = saved_player_population saved_player_population = GLOB.joined_player_list.len //if population has changed, update uplink items if(saved_player_population != previous_player_population) uplink_items = get_uplink_items(gamemode, TRUE, allow_restricted, filters) + ui_interact(user) // an unlocked uplink blocks also opening the PDA or headset menu return COMPONENT_NO_INTERACT