mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> 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
|