[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
This commit is contained in:
John Willard
2021-10-08 00:13:24 -04:00
committed by GitHub
parent d9a8315157
commit da88f85361
1752 changed files with 178269 additions and 156515 deletions

9
code/__HELPERS/datums.dm Normal file
View File

@@ -0,0 +1,9 @@
///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))