mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 04:27:35 +01:00
Converts a bunch of items into using neck slot (#27474)
* woe upon me * update * few changes * critters * critters * THIS IS A CERTIFIED VOX CLASSIC * removes comment from sql script * i think i have a skill issue * fuck * TGUI Bundle Rebuild * furcape * attackby update * cerefix * buildstgui * ajust size of loadout menu again * tie layering toggle * renames layer * fucking map conflicts * woe * deconflict * tgui * conflicts again * conflicts * manual deconflict again * oops * TGUI Bundle Rebuild * TGUI Bundle Rebuild * give this one more try * Update code/modules/clothing/neck/necklace.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Bm0n <92271472+Bm0n@users.noreply.github.com> * Update code/modules/clothing/neck/necklace.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Bm0n <92271472+Bm0n@users.noreply.github.com> * Update code/modules/clothing/neck/necklace.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Bm0n <92271472+Bm0n@users.noreply.github.com> * Update code/modules/clothing/neck/necklace.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Bm0n <92271472+Bm0n@users.noreply.github.com> * Update code/modules/clothing/neck/necklace.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Bm0n <92271472+Bm0n@users.noreply.github.com> * Update code/modules/clothing/neck/necklace.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Bm0n <92271472+Bm0n@users.noreply.github.com> * review * scarffixforemerald * tgui rebuild --------- Signed-off-by: Bm0n <92271472+Bm0n@users.noreply.github.com> Co-authored-by: Bmon <no@email.com> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
This commit is contained in:
@@ -73,7 +73,7 @@
|
||||
new /obj/item/clothing/mask/surgical(src)
|
||||
new /obj/item/clothing/glasses/hud/health(src)
|
||||
new /obj/item/clothing/gloves/color/latex/nitrile(src)
|
||||
new /obj/item/clothing/accessory/stethoscope(src)
|
||||
new /obj/item/clothing/neck/stethoscope(src)
|
||||
new /obj/item/flashlight/pen(src)
|
||||
new /obj/item/storage/firstaid/regular(src)
|
||||
new /obj/item/storage/firstaid/adv(src)
|
||||
|
||||
@@ -129,7 +129,7 @@
|
||||
closed_door_sprite = "green"
|
||||
|
||||
/obj/structure/closet/wardrobe/xenos/populate_contents()
|
||||
new /obj/item/clothing/suit/unathi/mantle(src)
|
||||
new /obj/item/clothing/neck/cloak/unathi(src)
|
||||
new /obj/item/clothing/suit/unathi/robe(src)
|
||||
new /obj/item/clothing/gloves/handwraps(src)
|
||||
new /obj/item/clothing/gloves/handwraps(src)
|
||||
|
||||
@@ -209,7 +209,7 @@ GLOBAL_LIST_EMPTY(safes)
|
||||
else
|
||||
to_chat(user, "<span class='warning'>[I] won't fit in [src].</span>")
|
||||
else
|
||||
if(istype(I, /obj/item/clothing/accessory/stethoscope))
|
||||
if(istype(I, /obj/item/clothing/neck/stethoscope))
|
||||
attack_hand(user)
|
||||
return
|
||||
else if(istype(I, /obj/item/thermal_drill))
|
||||
@@ -270,10 +270,10 @@ GLOBAL_LIST_EMPTY(safes)
|
||||
var/mob/living/carbon/human/H = usr
|
||||
var/list/accessories = H.w_uniform?.accessories
|
||||
if(H.can_hear()) // This is cursed but is_type_in_list somehow fails
|
||||
if(H.is_in_hands(/obj/item/clothing/accessory/stethoscope))
|
||||
if(H.is_in_hands(/obj/item/clothing/neck/stethoscope))
|
||||
canhear = TRUE
|
||||
else
|
||||
for(var/obj/item/clothing/accessory/stethoscope/S in accessories)
|
||||
for(var/obj/item/clothing/neck/stethoscope/S in accessories)
|
||||
canhear = TRUE
|
||||
break
|
||||
|
||||
|
||||
Reference in New Issue
Block a user