XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

SpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 1 Star 0
返回提交历史

XFEstudio/SpaceNinjaServer

fix(webui): show 0 rerolls instead NaN in Rivens (#1385)

Co-authored-by: Sainan <sainan@calamity.inc> Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/1385 Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>

f34e1615
AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
提交于

代码差异

1 个文件 +1 -1
Modified static/webui/script.js +1 -1
@@ -465,7 +465,7 @@ function updateInventory() {
465 465 " <span title='" +
466 466 loc("code_rerollsNumber") +
467 467 "'>⟳ " +
468 parseInt(fingerprint.rerolls) +
468 (fingerprint.rerolls ?? 0) +
469 469 "</span>";
470 470 tr.appendChild(td);
471 471 }