Merge pull request #14732 from Citadel-Station-13/silicons-patch-32

adds _contents() wrapper for SELECT SDQL2 statements
This commit is contained in:
Lin
2021-05-19 14:50:18 -05:00
committed by GitHub
@@ -238,3 +238,9 @@
/proc/__nan()
var/list/L = json_decode("{\"value\":NaN}")
return L["value"]
/**
* Wrapper to return a copy of contents, as SDQL2 can't tell an internal list from a normal list.
*/
/atom/proc/_contents()
return contents.Copy()