mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-14 11:42:27 +00:00
* Cleanup up all instances of using var/ definitions in proc parameters. (#52728) * var/list cleanup * The rest of the owl * plushvar bad * Can't follow my own advice. * Cleanup up all instances of using var/ definitions in proc parameters. Co-authored-by: Timberpoes <silent_insomnia_pp@hotmail.co.uk>
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]
|
|
|
|
|