mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 17:53:48 +02:00
Fixing loop logic
This commit is contained in:
parent
c52de6c685
commit
2de7f62b95
1 changed files with 1 additions and 1 deletions
|
@ -745,7 +745,7 @@ private:
|
|||
if (verb == "loop") {
|
||||
if (commandParams.length() > 1) {
|
||||
int maxLoops = commandParams[1].toInt();
|
||||
if (maxLoops > ++_commandLoops) {
|
||||
if (maxLoops < ++_commandLoops) {
|
||||
qDebug() << "Exceeded loop count";
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue