more changes

This commit is contained in:
Metis
2024-09-13 11:15:03 -04:00
parent 7b0780804f
commit cb6a43a7bf
64 changed files with 228 additions and 107 deletions
@@ -51,6 +51,8 @@
//For glove slots
/obj/item/clothing/gloves/ring/syntech/equipped(mob/living/user, slot)
. = ..()
if(ishuman(user))
var/mob/living/carbon/human/human_target = user
if(slot ==ITEM_SLOT_GLOVES)
@@ -59,6 +61,7 @@
normalize_mob_size(human_target)
/obj/item/clothing/gloves/ring/syntech/dropped(mob/living/user, slot)
. = ..()
if(ishuman(user))
var/mob/living/carbon/human/human_target = user
@@ -87,6 +90,7 @@
//For neck items
/obj/item/clothing/neck/syntech/equipped(mob/living/user, slot)
. = ..()
if(ishuman(user))
var/mob/living/carbon/human/human_target = user
if(slot ==ITEM_SLOT_NECK)
@@ -95,6 +99,7 @@
normalize_mob_size(human_target)
/obj/item/clothing/neck/syntech/dropped(mob/living/user, slot)
. = ..()
if(ishuman(user))
var/mob/living/carbon/human/human_target = user
@@ -38,7 +38,7 @@
return
if(!ishuman(user))
return
if(slot ==ITEM_SLOT_WEAR_SUIT)
if(slot == ITEM_SLOT_SUIT)
if(!firstpickup)
SEND_SOUND(user, sound('hyperstation/sound/halflife/hevsuit_pickup.ogg', volume = 50))
else