I've narrowed down the issue somewhat.
If i do:
PHP Code:
echo(passedeffects.size());
It does echo 3 when I have 3 things coming through. This is so the for loop runs that many times of course. However, it gets weird..
When I do:
PHP Code:
echo(passedeffects[0]);
echo(passedeffects[1]);
echo(passedeffects[2]);
It will return those 3 things in F2. But oddly..
PHP Code:
echo(passedeffects[i]);
Will stop after only the first line. It seems like the for loop quits for some reason after only the first run through. What could be causing this?