(custom condition) continue can't be use in a loop
2.0.0 SNAPSHOT , skript2.4Beta9
Work, return true
condition test:
check:
loop 2 times:
exit loop
continue
Does not work on any type of loop, return always false
condition test:
check:
loop 2 times:
continue
that's because "continue" means "go to the next value" when used inside a loop
You right, forgoten that skript effect ... So it might be interesting to change the pattern of "continue" to prevent this mistake.
And why use continue/negate the condition and not return %boolean% ? Custom expression #get allow to use return %object%
yeah that's a bit strange
And you don't have to remove the continue/negate, you can keep it (no broke existing codes) , just implement the return ;)