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."