Categorized latejoin menu and made it into VueUI, improved crew manifest logic and made Verb manifest same as VueUI program, Job fixes (#10470)

This commit is contained in:
Jiří Barouš
2020-11-12 17:08:31 +01:00
committed by GitHub
parent 6d9241f194
commit 37cbb8fdb8
42 changed files with 856 additions and 483 deletions

View File

@@ -93,6 +93,15 @@
return TRUE
return FALSE
// Checks that all of the values are in the given list
/proc/all_in_list(var/list/values, var/list/L)
if(!istype(values) || !istype(L))
return FALSE
for(var/value in values)
if(!(value in L))
return FALSE
return TRUE
/proc/is_path_in_list(var/check_path, var/list/L)
for(var/path in L)
if(ispath(check_path, path))