BUGFIX: Jump operations skipping an operation once maxJumps reached.

This commit is contained in:
n1474335 2017-03-01 21:20:42 +00:00
parent 3ad4291258
commit 70603be5ab
2 changed files with 45 additions and 2 deletions

View file

@ -128,7 +128,6 @@ var FlowControl = {
maxJumps = ings[1];
if (state.numJumps >= maxJumps) {
state.progress++;
return state;
}
@ -156,7 +155,6 @@ var FlowControl = {
maxJumps = ings[2];
if (state.numJumps >= maxJumps) {
state.progress++;
return state;
}