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 Apr 27, 2024
2 parents b02a71b + a4be405 commit 7db5914
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion js/kcsim.js
Original file line number Diff line number Diff line change
Expand Up @@ -2935,10 +2935,13 @@ function airstrikeLBAS(lbas,target,slot,contactMod,contactModLB,isjetphase) {
if (MECHANICS.LBASBuff) {
acc += .07*(equip.ACC || 0);
}
if ([444,484].includes(equip.mid)) {
if (equip.mid == 444) {
if (target.type == 'DD') acc -= .07;
if (target.type == 'CL') acc += .07;
}
if (equip.mid == 484) {
if (target.type == 'CL') acc += .07;
}
if (equip.mid == 453) {
if (target.type == 'DD') acc += .07;
}
Expand Down

0 comments on commit 7db5914

Please sign in to comment.