mirror of
https://github.com/goonstation/goonstation-2020.git
synced 2026-07-11 07:02:20 +01:00
15 lines
342 B
Plaintext
15 lines
342 B
Plaintext
/*
|
|
* Include this file in the .dme if you want to test fluids with these commands!
|
|
*/
|
|
|
|
|
|
/mob/living/proc/ttt()//just flicker images as a test
|
|
src.show_submerged_image(rand(0,4))
|
|
SPAWN_DBG(1 DECI SECOND)
|
|
src.ttt()
|
|
|
|
|
|
/obj/proc/ttt()//just flicker images as a test
|
|
src.show_submerged_image(rand(0,4))
|
|
SPAWN_DBG(1 DECI SECOND)
|
|
src.ttt() |