From 201464d8ed40b6486117d27c91b1b17b7823f700 Mon Sep 17 00:00:00 2001 From: Casper3667 Date: Mon, 5 Jul 2021 05:25:39 +0200 Subject: [PATCH] makes the wristbound spawn in the wrist slot (#12126) Co-authored-by: TheGreyWolf --- code/datums/outfits/outfit.dm | 5 ++++- html/changelogs/WristPdaSlot.yml | 6 ++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/WristPdaSlot.yml diff --git a/code/datums/outfits/outfit.dm b/code/datums/outfits/outfit.dm index 49ba2dfb910..b0574533d20 100644 --- a/code/datums/outfits/outfit.dm +++ b/code/datums/outfits/outfit.dm @@ -333,7 +333,10 @@ if(OUTFIT_PDA_SMART) I.icon = 'icons/obj/pda_smart.dmi' I.update_icon() - H.equip_or_collect(I, slot_wear_id) + if (H.pda_choice == OUTFIT_WRISTBOUND) + H.equip_or_collect(I, slot_wrists) + else + H.equip_or_collect(I, slot_wear_id) if(id) var/obj/item/modular_computer/P = H.wear_id diff --git a/html/changelogs/WristPdaSlot.yml b/html/changelogs/WristPdaSlot.yml new file mode 100644 index 00000000000..53347f47460 --- /dev/null +++ b/html/changelogs/WristPdaSlot.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "When selecting the wristbound PDA type in character setup, it now spawns in the wrist slot."