/tg/ Station 13 - Modules - TypesDefine Details

code/__DEFINES/_helpers.dm

STRINGIFYStringifies whatever you put into it.
subtypesofsubtypesof(), typesof() without the parent path
UNTILUntil a condition is true, sleep
SLEEP_NOT_DELSleep if we haven't been deleted Otherwise, return
text_refTakes a datum as input, returns its ref string
EMPTY_BLOCK_GUARDA null statement to guard against EmptyBlock lint without necessitating the use of pass() Used to avoid proc-call overhead. But use sparingly. Probably pointless in most places.

Define Details

EMPTY_BLOCK_GUARD

A null statement to guard against EmptyBlock lint without necessitating the use of pass() Used to avoid proc-call overhead. But use sparingly. Probably pointless in most places.

SLEEP_NOT_DEL

Sleep if we haven't been deleted Otherwise, return

STRINGIFY

Stringifies whatever you put into it.

UNTIL

Until a condition is true, sleep

subtypesof

subtypesof(), typesof() without the parent path

text_ref

Takes a datum as input, returns its ref string