using accessories no longer drops items on spawn (#18453)

* fixes accessory dropping items on spawn

* up that
This commit is contained in:
Kashargul
2025-09-11 10:49:05 +02:00
committed by GitHub
parent ca4f172a34
commit 0763684eaa
5 changed files with 46 additions and 46 deletions
@@ -85,7 +85,7 @@
var/obj/item/clothing/accessory/acc = A
if(can_attach_accessory(acc))
if(user)
user.drop_item()
user.remove_from_mob(acc)
attach_accessory(user, acc)
return TRUE
else