mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-12 02:22:11 +00:00
8 lines
219 B
Plaintext
8 lines
219 B
Plaintext
/proc/find_security_record(field, value)
|
|
return find_record(field, value, GLOB.data_core.security)
|
|
|
|
/proc/find_record(field, value, list/L)
|
|
for(var/datum/data/record/R in L)
|
|
if(R.fields[field] == value)
|
|
return R
|