Use "EXT" instead of "?" as default
This commit is contained in:
parent
ceafaad4c3
commit
7128dcc559
@ -1,4 +1,6 @@
|
|||||||
# v0.1.3
|
# v0.1.3
|
||||||
|
## Changed
|
||||||
|
- jubeat analyser : Use "EXT" instead of "?" as the fallback difficulty name when loading
|
||||||
## Fixed
|
## Fixed
|
||||||
- memon : Fix TypeError that would occur when trying to convert to memon
|
- memon : Fix TypeError that would occur when trying to convert to memon
|
||||||
|
|
||||||
|
@ -318,7 +318,7 @@ def _load_memo_file(lines: List[str]) -> Song:
|
|||||||
)
|
)
|
||||||
charts = {
|
charts = {
|
||||||
parser.difficulty
|
parser.difficulty
|
||||||
or "?": Chart(
|
or "EXT": Chart(
|
||||||
level=Decimal(parser.level),
|
level=Decimal(parser.level),
|
||||||
timing=timing,
|
timing=timing,
|
||||||
notes=sorted(parser.notes(), key=lambda n: (n.time, n.position)),
|
notes=sorted(parser.notes(), key=lambda n: (n.time, n.position)),
|
||||||
|
@ -312,7 +312,7 @@ def _load_memo1_file(lines: List[str]) -> Song:
|
|||||||
)
|
)
|
||||||
charts = {
|
charts = {
|
||||||
parser.difficulty
|
parser.difficulty
|
||||||
or "?": Chart(
|
or "EXT": Chart(
|
||||||
level=Decimal(parser.level),
|
level=Decimal(parser.level),
|
||||||
timing=timing,
|
timing=timing,
|
||||||
notes=sorted(parser.notes(), key=lambda n: (n.time, n.position)),
|
notes=sorted(parser.notes(), key=lambda n: (n.time, n.position)),
|
||||||
|
@ -448,7 +448,7 @@ def _load_memo2_file(lines: List[str]) -> Song:
|
|||||||
)
|
)
|
||||||
charts = {
|
charts = {
|
||||||
parser.difficulty
|
parser.difficulty
|
||||||
or "?": Chart(
|
or "EXT": Chart(
|
||||||
level=Decimal(parser.level),
|
level=Decimal(parser.level),
|
||||||
timing=timing,
|
timing=timing,
|
||||||
notes=sorted(parser.notes(), key=lambda n: (n.time, n.position)),
|
notes=sorted(parser.notes(), key=lambda n: (n.time, n.position)),
|
||||||
|
@ -298,7 +298,7 @@ def _load_mono_column_file(lines: List[str]) -> Song:
|
|||||||
)
|
)
|
||||||
charts = {
|
charts = {
|
||||||
parser.difficulty
|
parser.difficulty
|
||||||
or "?": Chart(
|
or "EXT": Chart(
|
||||||
level=Decimal(parser.level),
|
level=Decimal(parser.level),
|
||||||
timing=timing,
|
timing=timing,
|
||||||
notes=sorted(parser.notes(), key=lambda n: (n.time, n.position)),
|
notes=sorted(parser.notes(), key=lambda n: (n.time, n.position)),
|
||||||
|
Loading…
Reference in New Issue
Block a user