It means exactly that, your creature is taking too much time to run it's code. This is most often seen when doing advanced recursive path finding algorithms that take a large amount of time to run. You have to learn how to split the work of these algorithms over multiple ticks by using level of detail style programming. |