mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-14 20:23:26 +00:00
* Rearranges a billion things into planes * Make cryotubes fancy * Update Travis * Fix hiding logic
15 lines
350 B
Plaintext
15 lines
350 B
Plaintext
/obj/effect/decal/cleanable
|
|
plane = DIRTY_PLANE
|
|
var/list/random_icon_states = list()
|
|
|
|
/obj/effect/decal/cleanable/clean_blood(var/ignore = 0)
|
|
if(!ignore)
|
|
qdel(src)
|
|
return
|
|
..()
|
|
|
|
/obj/effect/decal/cleanable/New()
|
|
if (random_icon_states && length(src.random_icon_states) > 0)
|
|
src.icon_state = pick(src.random_icon_states)
|
|
..()
|