Skip to content

Commit

Permalink
上陸支援舟艇シナジー補正値修正
Browse files Browse the repository at this point in the history
  • Loading branch information
nishi-kuma committed Jul 28, 2023
1 parent 6d30f19 commit 03dddc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions UnexpectedDamage.js
Expand Up @@ -14,7 +14,7 @@ Ship = Java.type("logbook.internal.Ship")
//#region 全般

/** バージョン */
var VERSION = "3.0.6"
var VERSION = "3.0.7"
/** バージョン確認URL */
var UPDATE_CHECK_URL = "https://api.github.com/repos/Nishisonic/UnexpectedDamage/releases/latest"
/** ファイルの場所 */
Expand Down Expand Up @@ -2957,7 +2957,7 @@ var getLandBonus = function (attacker, defender, isDay, date) {
if ((catA >= 1 && catB >= 1) && (catC === 0 && catD === 1)) {
return { a: 1.4, b: 20 }
}
if ((catA >= 1 && catB >= 1) && (catC === 0 && catD === 1)) {
if ((catA >= 1 && catB >= 1) && (catC + catD >= 2)) {
return { a: 1.5, b: 25 }
}
return { a: 1, b: 0 }
Expand Down
2 changes: 1 addition & 1 deletion drop_unexpectedDamage.js
@@ -1,6 +1,6 @@
/**
* 異常ダメージ検知
* @version 3.0.6
* @version 3.0.7
* @author Nishikuma
*/

Expand Down

0 comments on commit 03dddc5

Please sign in to comment.