danoniplus 29.3.1 → 29.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/js/danoni_main.js +8 -4
- package/package.json +1 -1
package/js/danoni_main.js
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
*
|
|
5
5
|
* Source by tickle
|
|
6
6
|
* Created : 2018/10/08
|
|
7
|
-
* Revised : 2022/12/
|
|
7
|
+
* Revised : 2022/12/30
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 29.3.
|
|
12
|
-
const g_revisedDate = `2022/12/
|
|
11
|
+
const g_version = `Ver 29.3.3`;
|
|
12
|
+
const g_revisedDate = `2022/12/30`;
|
|
13
13
|
const g_alphaVersion = ``;
|
|
14
14
|
|
|
15
15
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
@@ -8815,7 +8815,7 @@ const mainInit = _ => {
|
|
|
8815
8815
|
const prevFrzName = `frz${_j}_${g_workObj.judgFrzCnt[_j]}`;
|
|
8816
8816
|
const prevFrz = g_attrObj[prevFrzName];
|
|
8817
8817
|
|
|
8818
|
-
if (prevFrz.isMoving && prevFrz.cnt < (-1) * g_judgObj.frzJ[g_judgPosObj.kita]) {
|
|
8818
|
+
if (prevFrz.isMoving && !prevFrz.judgEndFlg && prevFrz.cnt < (-1) * g_judgObj.frzJ[g_judgPosObj.kita]) {
|
|
8819
8819
|
|
|
8820
8820
|
// 自身より前のフリーズアローが未判定の場合、強制的に枠外判定を行いフリーズアローを削除
|
|
8821
8821
|
if (prevFrz.cnt >= (-1) * g_judgObj.frzJ[g_judgPosObj.iknai]) {
|
|
@@ -9572,6 +9572,10 @@ const judgeArrow = _j => {
|
|
|
9572
9572
|
changeHitFrz(_j, fcurrentNo, `frz`);
|
|
9573
9573
|
} else {
|
|
9574
9574
|
changeFailedFrz(_j, fcurrentNo);
|
|
9575
|
+
if (g_headerObj.frzStartjdgUse) {
|
|
9576
|
+
judgeIknai(_difFrame);
|
|
9577
|
+
currentFrz.judgEndFlg = true;
|
|
9578
|
+
}
|
|
9575
9579
|
}
|
|
9576
9580
|
g_workObj.judgFrzHitCnt[_j] = fcurrentNo + 1;
|
|
9577
9581
|
return true;
|