16 lines
385 B
Plaintext
16 lines
385 B
Plaintext
/mob/living/carbon/human/handle_creampie()
|
|
if(NOBLOOD in dna.species.species_traits)
|
|
cumdrip_rate = 0
|
|
return
|
|
|
|
if(cumdrip_rate < 0)
|
|
cumdrip_rate = 0
|
|
|
|
if(bodytemperature >= TCRYO && !(HAS_TRAIT(src, TRAIT_NOCLONE)))
|
|
cumdrip_rate = cumdrip_rate - 1
|
|
cumdrip()
|
|
|
|
/mob/living/carbon/human/proc/cumdrip()
|
|
if(isturf(loc))
|
|
new/obj/effect/decal/cleanable/semendrip(get_turf(src))
|