Skip to content

Commit

Permalink
[ver31.7.4] フリーズアローの終点と次のフリーズアローの始点が近い場合の判定不具合を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
cwtickle committed Aug 14, 2023
1 parent 34e875e commit f3b231e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions js/danoni_main.js
Expand Up @@ -4,12 +4,12 @@
*
* Source by tickle
* Created : 2018/10/08
* Revised : 2023/06/02
* Revised : 2023/08/14
*
* https://github.com/cwtickle/danoniplus
*/
const g_version = `Ver 31.7.3`;
const g_revisedDate = `2023/06/02`;
const g_version = `Ver 31.7.4`;
const g_revisedDate = `2023/08/14`;
const g_alphaVersion = ``;

// カスタム用バージョン (danoni_custom.js 等で指定可)
Expand Down Expand Up @@ -9245,7 +9245,7 @@ const mainInit = _ => {

frzOFF: (_j, _k, _cnt) => {

if (g_workObj.judgFrzCnt[_j] === _k - 1 && _cnt <= g_judgObj.frzJ[g_judgPosObj.sfsf]) {
if (g_workObj.judgFrzCnt[_j] === _k - 1) {
const prevFrzName = `frz${_j}_${g_workObj.judgFrzCnt[_j]}`;
const prevFrz = g_attrObj[prevFrzName];

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "danoniplus",
"version": "31.7.3",
"version": "31.7.4",
"description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit f3b231e

Please sign in to comment.