mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-22 12:16:40 +01:00
17 lines
390 B
Plaintext
17 lines
390 B
Plaintext
/obj/machinery/shower/wash_mob(mob/living/L)
|
|
. = ..()
|
|
L.wash_cum()
|
|
if(ishuman(L))
|
|
var/mob/living/carbon/human/H = L
|
|
for(var/obj/item/bodypart/BP in H.bodyparts)
|
|
BP.writtentext = ""
|
|
for(var/obj/item/organ/genital/G in H.internal_organs)
|
|
if(istype(G) && G.is_exposed())
|
|
G.writtentext = ""
|
|
|
|
/obj/machinery/shower/wash_obj(obj/O)
|
|
. = ..()
|
|
if(!O)
|
|
return
|
|
. = O.wash_cum()
|