forked from Dniel97/artemis
idac: fixed special mode course bug
This commit is contained in:
parent
a38904c743
commit
2f1f0281f8
@ -693,7 +693,7 @@ class IDACItemData(BaseData):
|
|||||||
challenge.c.vs_type,
|
challenge.c.vs_type,
|
||||||
challenge.c.cleared_difficulty.label("max_clear_lv"),
|
challenge.c.cleared_difficulty.label("max_clear_lv"),
|
||||||
challenge.c.play_difficulty.label("last_play_lv"),
|
challenge.c.play_difficulty.label("last_play_lv"),
|
||||||
challenge.c.course_id,
|
challenge.c.last_play_course_id,
|
||||||
challenge.c.play_count,
|
challenge.c.play_count,
|
||||||
)
|
)
|
||||||
.where(
|
.where(
|
||||||
|
@ -877,8 +877,7 @@ class IDACSeason2(IDACBase):
|
|||||||
"vs_type": s["vs_type"],
|
"vs_type": s["vs_type"],
|
||||||
"max_clear_lv": s["max_clear_lv"],
|
"max_clear_lv": s["max_clear_lv"],
|
||||||
"last_play_lv": s["last_play_lv"],
|
"last_play_lv": s["last_play_lv"],
|
||||||
# change to last_play_course_id?
|
"last_play_course_id": s["last_play_course_id"]
|
||||||
"last_play_course_id": s["course_id"],
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -898,8 +897,7 @@ class IDACSeason2(IDACBase):
|
|||||||
"vs_type": c["vs_type"],
|
"vs_type": c["vs_type"],
|
||||||
"max_clear_lv": c["max_clear_lv"],
|
"max_clear_lv": c["max_clear_lv"],
|
||||||
"last_play_lv": c["last_play_lv"],
|
"last_play_lv": c["last_play_lv"],
|
||||||
# change to last_play_course_id?
|
"last_play_course_id": c["last_play_course_id"],
|
||||||
"last_play_course_id": c["course_id"],
|
|
||||||
"play_count": c["play_count"],
|
"play_count": c["play_count"],
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user