Files
fulpstation/code/__HELPERS/datums.dm
John Willard da88f85361 [MDB IGNORE] [IDB IGNORE] Late September TGU (#367)
* tgu

* updated paths

* updating more paths

* master server

* more repaths

* tgu

* oh these were defined

* y

* tgu

* fixes fulp shuttles i think

* revert

* tgu

* fix checks and stuff

* Update sound.dm

* Update tg_edits.md

* tgu
2021-10-07 22:13:24 -06:00

10 lines
307 B
Plaintext

///Check if a datum has not been deleted and is a valid source
/proc/is_valid_src(datum/source_datum)
if(istype(source_datum))
return !QDELETED(source_datum)
return FALSE
/proc/call_async(datum/source, proc_type, list/arguments)
set waitfor = FALSE
return call(source, proc_type)(arglist(arguments))