var/list/a = list("a")
var/list/b = list("a", "b")
proc
example()
if(b in a)
return TRUE
Problem description:
What I expected was that it would check A, for anything that is in B. Instead, I have to use "b[1] in a", which means it will only look for "a".
I want it to look for anything that matches; so if a has ("a", "b") and b has ("a", "c") it would return TRUE.