mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-23 12:47:13 +01:00
12 lines
334 B
Plaintext
12 lines
334 B
Plaintext
/obj/item/clothing/under
|
|
is_edible = 1 //Most jumpsuits are made of cloth so this is a safe bet.
|
|
|
|
/obj/item/clothing/under/Initialize(mapload)
|
|
. = ..()
|
|
if(!is_type_in_typecache(type, GLOB.skirt_peekable))
|
|
LAZYSET(GLOB.skirt_peekable, type, TRUE)
|
|
|
|
/obj/item/clothing/under/Destroy()
|
|
QDEL_LIST(attached_accessories)
|
|
return ..()
|