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 GitHub
parent b00df4513e
commit 3d6bbe4b7b
+1 -1
View File
@@ -17,7 +17,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