mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-03-22 11:43:12 +00:00
* Begin * Begin 2 * move to tsx * fix that UI * fix gib * bunch of fixes * fix this one * Nicer ahelp bot text formatting * clean up all inputs * . * fix MC tab * fix ore spawn * with rare * More filter stuff * Cleaned up world * Fix * ummm * . * fix that * . * Begin * Begin 2 * move to tsx * fix that UI * fix gib * bunch of fixes * fix this one * clean up all inputs * Nicer ahelp bot text formatting * . * fix MC tab * fix ore spawn * with rare * More filter stuff * Cleaned up world * Fix * Added missing props * useContext fix * . --------- Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
16 lines
473 B
Plaintext
16 lines
473 B
Plaintext
// A list of all the special byond lists that need to be handled different by vv
|
|
GLOBAL_LIST_INIT(vv_special_lists, init_special_list_names())
|
|
|
|
/proc/init_special_list_names()
|
|
var/list/output = list()
|
|
var/obj/sacrifice = new
|
|
for(var/varname in sacrifice.vars)
|
|
var/value = sacrifice.vars[varname]
|
|
if(!islist(value))
|
|
if(!isdatum(value) && hascall(value, "Cut"))
|
|
output += varname
|
|
continue
|
|
if(isnull(locate(REF(value))))
|
|
output += varname
|
|
return output
|