mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
* 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
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))
|