Update variable to prevent underflowing

While not an issue presently, the variable may be used in the future in a way that could create issues if it underflows.
pull/928/head
Austin Salgat 9 years ago
parent 84179c262f
commit 3dec10c686

@ -371,7 +371,7 @@ namespace MWMechanics
storage.setState(Wander_Walking, true);
return;
}
} while (attempts--);
} while (--attempts);
}
/*

Loading…
Cancel
Save