mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-30 03:52:52 +00:00
16 lines
389 B
Plaintext
16 lines
389 B
Plaintext
/obj/effect/decal/cleanable
|
|
var/list/random_icon_states
|
|
|
|
/obj/effect/decal/cleanable/clean_blood(var/ignore = 0)
|
|
if(!ignore)
|
|
qdel(src)
|
|
return
|
|
..()
|
|
|
|
/obj/effect/decal/cleanable/Initialize(mapload)
|
|
if (LAZYLEN(random_icon_states))
|
|
icon_state = pick(src.random_icon_states)
|
|
. = ..()
|
|
if (!mapload && ROUND_IS_STARTED)
|
|
SSfeedback.IncrementSimpleStat("messes_made")
|