“Equinox" bugs and feedback

The error Statement execution limit reached indicates that you have exceeded the allowed amount of statements per arena match,
a statement is a thing that you wanted the computer to do, for example assigning a variable, that counts as one statement
The allowed limits for statement executions is 3 million statements if I’m not wrong, after that your code stops executing and that error will get fired.
To get around this error, you can try to see which part of your code can be done in less statements.

2 Likes