mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-11 10:11:09 +00:00
bring code up to latest standards, move many procs to named files inside _HELPERS no idea where to put some of these procs, help is appreciated made more files to contain some unique code, deleted unsorted.dm, we can rest now
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))
|