Skip to content

Commit

Permalink
fix: 设置
Browse files Browse the repository at this point in the history
  • Loading branch information
Zebartin committed Jul 11, 2024
1 parent 9c133ee commit 5b26603
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions NIKKE/NIKKE设置.js
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,11 @@ ui.buyBondItem.setChecked(NIKKEstorage.get('buyBondItem', false));
ui.buyProfileCustomPack.setChecked(NIKKEstorage.get('buyProfileCustomPack', false));
ui.buyProfileCustomPackArena.setChecked(NIKKEstorage.get('buyProfileCustomPackArena', false));
ui.buyCodeManual.setProgress(NIKKEstorage.get('buyCodeManual', 3));
for (let recyclingGood of NIKKEstorage.get('recyclingShopList', ['珠宝', '芯尘盒']))
ui.findView(`废铁商店.${recyclingGood}`).setChecked(true);
for (let recyclingGood of NIKKEstorage.get('recyclingShopList', ['珠宝', '芯尘盒'])) {
let t = ui.findView(`废铁商店.${recyclingGood}`);
if (t !== null)
t.setChecked(true);
}

ui.adviseLimit.setMax(10);
ui.adviseLimit.setOnSeekBarChangeListener({
Expand Down

0 comments on commit 5b26603

Please sign in to comment.