Skip to content

Commit

Permalink
调试
Browse files Browse the repository at this point in the history
  • Loading branch information
LazyImmortal committed Jul 23, 2024
1 parent 7c1e238 commit ac1c2fa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,9 @@ private void walk(String pathId) {
int forwardStepCount = userPathStep.getInt("forwardStepCount");
int remainStepCount = userPathStep.getInt("remainStepCount");
int needStepCount = pathStepCount - forwardStepCount;
remainStepCount = 50000;// 调试模式
if (remainStepCount >= minGoStepCount) {
// int useStepCount = Math.min(remainStepCount, needStepCount);
int useStepCount = Math.min(50000, needStepCount);
int useStepCount = Math.min(remainStepCount, needStepCount);
walkGo(userPathStep.getString("pathId"), useStepCount, userPathStep.getString("pathName"));
}
} catch (Throwable t) {
Expand Down

0 comments on commit ac1c2fa

Please sign in to comment.