Skip to content

Commit

Permalink
航空戦の戦闘報告書を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
biikame committed Mar 16, 2016
1 parent 823c216 commit 555e459
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion script/combat/航空戦/combat_航空戦.js
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ var combat;
innerRow.push(d);
innerRow.push(protects);
innerRow.push.apply(innerRow, (_a = []).concat.apply(_a, atShipRows));
for (var i = 1; i <= 6; ++i) {
for (var i = 0; i < 6; ++i) {
rows.push(innerRow.concat(dfShipRows[i]));
}
}
Expand Down
2 changes: 1 addition & 1 deletion script_src/combat_航空戦/combat_航空戦.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ module combat {
innerRow.push(d);
innerRow.push(protects);
innerRow.push(...([] as any[]).concat(...atShipRows));
for (var i = 1; i <= 6; ++i) {
for (var i = 0; i < 6; ++i) {
rows.push(innerRow.concat(dfShipRows[i]));
}
}
Expand Down

0 comments on commit 555e459

Please sign in to comment.