mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 01:34:01 +00:00
* _HELPERS/unsorted.dm has been sorted * Feexing conflicts Co-authored-by: Ghilker <42839747+Ghilker@users.noreply.github.com> Co-authored-by: GoldenAlpharex <jerego1234@hotmail.com>
10 lines
307 B
Plaintext
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))
|