mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-02 13:32:32 +00:00
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:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user