mob
var/list/completedmissions=new
var/prerequisite
verb
Test()
if(!src.prerequisite||src.prerequisite in src.completedmissions)
world<<"working"
Problem description:
I've been wondering this for sometime now, Why can't you combined an 'in' operator with other statements using || or &&. In the above example prerequisite is null and still can't pass the if statement.