mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-03-23 12:12:56 +00:00
* Begin * Begin 2 * move to tsx * fix that UI * fix gib * bunch of fixes * fix this one * Nicer ahelp bot text formatting * clean up all inputs * . * fix MC tab * fix ore spawn * with rare * More filter stuff * Cleaned up world * Fix * ummm * . * fix that * . * Begin * Begin 2 * move to tsx * fix that UI * fix gib * bunch of fixes * fix this one * clean up all inputs * Nicer ahelp bot text formatting * . * fix MC tab * fix ore spawn * with rare * More filter stuff * Cleaned up world * Fix * Added missing props * useContext fix * . --------- Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
6 lines
175 B
Plaintext
6 lines
175 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
|