Make the infinite loop preventer actually prevent infinite loops.

This commit is contained in:
cim 2015-02-05 19:53:43 +00:00
parent 87cbb35868
commit c171f68507

View File

@ -2659,7 +2659,7 @@ this._tradeStation = function(usemain)
}
}
}
} while (tries < 5 && tries < stats.length);
} while (++tries < 5 && tries < stats.length);
return system.mainStation;
}