Verse has internal checks that try to prevent scenarios where you can do things like infinite loops, super long processing, etc. This is how we ensure that a bad script cannot completely ruin the user experience or lock up the server. By adding a sleep to this code you are yielding back execution for other Verse code to run. This also has the effect of resetting those internal “too long to process” counters for your code.
3 Likes