mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-12 10:53:57 +00:00
9 lines
205 B
Plaintext
9 lines
205 B
Plaintext
/proc/is_type_in_ref_list(path, list/L)
|
|
if(!ispath(path))//not a path
|
|
return
|
|
for(var/i in L)
|
|
var/datum/D = i
|
|
if(!istype(D))//not an usable reference
|
|
continue
|
|
if(istype(D, path))
|
|
return TRUE |