danoniplus 24.6.9 → 24.6.11
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 +7 -7
- 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/
|
|
7
|
+
* Revised : 2022/11/15
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 24.6.
|
|
12
|
-
const g_revisedDate = `2022/
|
|
11
|
+
const g_version = `Ver 24.6.11`;
|
|
12
|
+
const g_revisedDate = `2022/11/15`;
|
|
13
13
|
const g_alphaVersion = ``;
|
|
14
14
|
|
|
15
15
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
@@ -8384,9 +8384,9 @@ function MainInit() {
|
|
|
8384
8384
|
|
|
8385
8385
|
// 枠外判定前の場合、このタイミングで枠外判定を行う
|
|
8386
8386
|
if (g_attrObj[prevFrzName].cnt >= (-1) * g_judgObj.frzJ[g_judgPosObj.iknai]) {
|
|
8387
|
-
judgeIknai(
|
|
8387
|
+
judgeIknai(g_attrObj[prevFrzName].cnt);
|
|
8388
8388
|
if (g_headerObj.frzStartjdgUse) {
|
|
8389
|
-
judgeUwan(
|
|
8389
|
+
judgeUwan(g_attrObj[prevFrzName].cnt);
|
|
8390
8390
|
}
|
|
8391
8391
|
}
|
|
8392
8392
|
judgeObjDelete.frz(_j, prevFrzName);
|
|
@@ -9076,8 +9076,8 @@ function changeHitFrz(_j, _k, _name) {
|
|
|
9076
9076
|
|
|
9077
9077
|
// 早押ししたboostCnt分のフリーズアロー終端位置の修正
|
|
9078
9078
|
let delFrzMotionLength = 0;
|
|
9079
|
-
for (let i = 0; i
|
|
9080
|
-
delFrzMotionLength += g_workObj.motionOnFrames[
|
|
9079
|
+
for (let i = 0; i <= g_attrObj[frzName].boostCnt; i++) {
|
|
9080
|
+
delFrzMotionLength += g_workObj.motionOnFrames[i] * g_attrObj[frzName].boostSpd;
|
|
9081
9081
|
}
|
|
9082
9082
|
|
|
9083
9083
|
g_attrObj[frzName].frzBarLength -= (delFrzLength + delFrzMotionLength) * g_attrObj[frzName].dir;
|