Skip to content

Commit

Permalink
Update 80_info.js
Browse files Browse the repository at this point in the history
  • Loading branch information
fohristiwhirl committed Feb 9, 2021
1 parent 98dbc93 commit 67b5fe3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/80_info.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,11 @@ function NewInfoHandler() {
let move_info;
let move = infovals["string"];

if (move === "node") { // Mostly ignore these lines, but..., but use it to note that the VMS is complete. A bit sketchy?
this.next_vms_order_int = 1; // Use them to note that the VerboseMoveStats have completed.
if (move === "node") { // Mostly ignore these lines, but...
this.next_vms_order_int = 1; // ...use them to note that the VerboseMoveStats have completed. A bit sketchy?
tmp = parseInt(infovals["N:"], 10);
if (Number.isNaN(tmp) === false) {
node.table.nodes = tmp; // And use this line to ensure a valid nodes count for the table. (Mostly helps with Ceres.)
node.table.nodes = tmp; // ...and use this line to ensure a valid nodes count for the table. (Mostly helps with Ceres.)
}
return;
}
Expand Down

0 comments on commit 67b5fe3

Please sign in to comment.