mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-20 20:37:45 +01:00
15 lines
384 B
Plaintext
15 lines
384 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)) |