From 8d192a63120c3060f2d77484dcbe4c09b6cbca51 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Thu, 19 Dec 2019 15:58:44 -0300 Subject: [PATCH] Fixes the mercenary loadout crates not showing up on the uplink (#7741) --- code/datums/outfits/outfit_antag.dm | 3 ++- html/changelogs/alberyk-cratefix.yml | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/alberyk-cratefix.yml diff --git a/code/datums/outfits/outfit_antag.dm b/code/datums/outfits/outfit_antag.dm index 242d590a8eb..e130a36085a 100644 --- a/code/datums/outfits/outfit_antag.dm +++ b/code/datums/outfits/outfit_antag.dm @@ -35,8 +35,9 @@ var/obj/item/device/radio/uplink/U = H.r_store if(istype(U)) - U.hidden_uplink.uplink_owner = "[H.key]" + U.hidden_uplink.uplink_owner = H.mind U.hidden_uplink.uses = uplink_uses + U.hidden_uplink.nanoui_menu = 1 /datum/outfit/admin/syndicate/get_id_access() return get_syndicate_access(id_access) diff --git a/html/changelogs/alberyk-cratefix.yml b/html/changelogs/alberyk-cratefix.yml new file mode 100644 index 00000000000..a375d31c9d9 --- /dev/null +++ b/html/changelogs/alberyk-cratefix.yml @@ -0,0 +1,6 @@ +author: Alberyk + +delete-after: True + +changes: + - bugfix: "Fixed the gear crates not showing up in the mercenary uplink."