Lets you retract your helmet even when the MODsuit is active (#11120)

This commit is contained in:
GoldenAlpharex
2022-01-29 23:49:25 -05:00
committed by KrissKr0ss
parent 44c029176c
commit 682d60710d
+1 -1
View File
@@ -15,7 +15,7 @@
var/obj/item/part = locate(part_reference) in mod_parts
if(!istype(part) || user.incapacitated())
return
if(active || activating)
if((active && part != helmet) || activating) // SKYRAT EDIT - Let the hair flow - ORIGINAL: if(active || activating)
balloon_alert(user, "deactivate the suit first!")
playsound(src, 'sound/machines/scanbuzz.ogg', 25, TRUE, SILENCED_SOUND_EXTRARANGE)
return