|
@@ -662,7 +662,6 @@ function preparaAutomatico ()
|
|
|
max = mov.length - 1;
|
|
|
|
|
|
setTimeout(fazMovimento, 1000);
|
|
|
- mov = [];
|
|
|
}
|
|
|
|
|
|
// Efetiva os movimentos calculados
|
|
@@ -672,7 +671,10 @@ function fazMovimento ()
|
|
|
movaHaste(mov[indiceMovimento + 1]);
|
|
|
indiceMovimento += 2;
|
|
|
|
|
|
- if (indiceMovimento >= max) return;
|
|
|
+ if (indiceMovimento >= max) {
|
|
|
+ mov = [];
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
setTimeout(fazMovimento, 1000);
|
|
|
|