mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 10:01:40 +00:00
7 lines
182 B
Plaintext
7 lines
182 B
Plaintext
|
|
/proc/overwrite_field_if_available(datum/data/record/base, datum/data/record/other, field_name)
|
|
if(other.fields[field_name])
|
|
base.fields[field_name] = other.fields[field_name]
|
|
|
|
|