Skip to content

Commit

Permalink
危険度 0 が表示されないバグを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
kobalab committed Oct 15, 2022
1 parent 08390c6 commit bbdae8a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dev/eval_dapai.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ if (player.shoupai.get_dapai()) {
console.log(
r.p,
r.n_xiangting,
r.ev != null ? r.ev.toFixed(2) : 'オリ',
r.weixian ? `(${r.weixian.toFixed(2)})` : '',
r.ev ? r.tingpai.join(',') : '',
r.ev ? r.n_tingpai : '',
r.ev != null ? r.ev.toFixed(2) : 'オリ',
r.weixian != null ? `(${r.weixian.toFixed(2)})` : '',
r.ev ? r.tingpai.join(',') : '',
r.ev ? r.n_tingpai : '',
);
}
}
Expand Down

0 comments on commit bbdae8a

Please sign in to comment.