Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/KC3Kai/kancolle-replay in…
Browse files Browse the repository at this point in the history
…to gh-pages
  • Loading branch information
fourinone41 committed Oct 2, 2024
2 parents 143814c + 9410381 commit f2a6410
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/kcEQDATA.js
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ EQTDATA[LANDINGTANK] = {
name: 'Misc',
image: 36,
btype: B_LC3,
improve: {Pshell:1,Pnb:1},
improve: {Pshell:1,Pnb:1,ACCshell:1,ACCnb:1.3},
canequip: ['SS','SSV','AV','LHA'],
canequipS: [147, 198, 199, 200, 352, 418, 464, 468, 470, 478, 487, 488, 489, 490, 497, 500, 506, 541, 547, 548, 556, 564, 568, 569, 573, 578, 587, 588, 623, 647, 656, 657, 662, 663, 666, 667, 668, 670, 899, 908, 915, 916, 954, 960, 961],
cannotequipS: [445, 491, 581, 943],
Expand Down
2 changes: 1 addition & 1 deletion js/simulator-ui/convert.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ window.CONVERT = {
}
for (let i=0; i<shipReplay.equip.length; i++) {
let equipSave = { mstId: shipReplay.equip[i] };
if (shipReplay.stars) equipSave.level = shipReplay.stars[i];
if (shipReplay.stars && shipReplay.stars[i] > -1) equipSave.level = shipReplay.stars[i];
if (shipReplay.ace && shipReplay.ace[i] > -1) equipSave.rank = shipReplay.ace[i];
shipSave.equips.push(equipSave);
}
Expand Down

0 comments on commit f2a6410

Please sign in to comment.