A variable that can be saved is any variable that is not declared as /global
, /const
, or /tmp
.
/datum/a
= "aaa"
= "bbb"
/proc/main()
= new
world.log << issaved(thing.foo) // 0
world.log << issaved(thing.bar) // 1
A variable that can be saved is any variable that is not declared as /global
, /const
, or /tmp
.
/datum/a
= "aaa"
= "bbb"
/proc/main()
= new
world.log << issaved(thing.foo) // 0
world.log << issaved(thing.bar) // 1