修复 delay 单词拼错的问题

This commit is contained in:
Eilles
2025-10-08 17:53:11 +08:00
parent 2c85315e07
commit fcbf14fe2a
3 changed files with 5 additions and 5 deletions

View File

@@ -32,7 +32,7 @@
- `-vpf | --volume-processing-function <字符串>` : 音量处理函数,支持两种音量函数:`natural``straight`;默认为`natural` - `-vpf | --volume-processing-function <字符串>` : 音量处理函数,支持两种音量函数:`natural``straight`;默认为`natural`
- `-t | --type <字符串>` : 转换结果类型,支持的类型有:`addon-delay``addon-score``mcstructure-dalay``mcstructure-score``bdx-delay``bdx-score``msq`;默认为`all` - `-t | --type <字符串>` : 转换结果类型,支持的类型有:`addon-delay``addon-score``mcstructure-delay``mcstructure-score``bdx-delay``bdx-score``msq`;默认为`all`
- `-htp | --high-time-precision` : **仅当结果类型包含 `msq` 时生效** : 是否使用高精度时间存储 MSQ 文件;默认为关 - `-htp | --high-time-precision` : **仅当结果类型包含 `msq` 时生效** : 是否使用高精度时间存储 MSQ 文件;默认为关

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 MiB

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

@@ -908,7 +908,7 @@ async def _(
all_cvt_types = [ all_cvt_types = [
"addon-delay", "addon-delay",
"addon-score", "addon-score",
"mcstructure-dalay", "mcstructure-delay",
"mcstructure-score", "mcstructure-score",
"bdx-delay", "bdx-delay",
"bdx-score", "bdx-score",
@@ -1065,8 +1065,8 @@ async def _(
# people_convert_point[usr_id] += 0.5 # people_convert_point[usr_id] += 0.5
# all_cvt_types.remove("addon-score") # all_cvt_types.remove("addon-score")
if go_chk_point() and "mcstructure-dalay" in all_cvt_types: if go_chk_point() and "mcstructure-delay" in all_cvt_types:
all_files[file_to_convert]["mcstructure-dalay"] = dict( all_files[file_to_convert]["mcstructure-delay"] = dict(
zip( zip(
["结构尺寸", "音乐刻长"], ["结构尺寸", "音乐刻长"],
to_mcstructure_file_in_delay( to_mcstructure_file_in_delay(
@@ -1078,7 +1078,7 @@ async def _(
) )
) )
# people_convert_point[usr_id] += 0.5 # people_convert_point[usr_id] += 0.5
# all_cvt_types.remove("mcstructure-dalay") # all_cvt_types.remove("mcstructure-delay")
if go_chk_point() and "mcstructure-score" in all_cvt_types: if go_chk_point() and "mcstructure-score" in all_cvt_types:
all_files[file_to_convert]["mcstructure-score"] = dict( all_files[file_to_convert]["mcstructure-score"] = dict(