diff --git a/titles/idac/schema/item.py b/titles/idac/schema/item.py index 8dc4f09..4169e9b 100644 --- a/titles/idac/schema/item.py +++ b/titles/idac/schema/item.py @@ -693,7 +693,7 @@ class IDACItemData(BaseData): challenge.c.vs_type, challenge.c.cleared_difficulty.label("max_clear_lv"), challenge.c.play_difficulty.label("last_play_lv"), - challenge.c.course_id, + challenge.c.last_play_course_id, challenge.c.play_count, ) .where( diff --git a/titles/idac/season2.py b/titles/idac/season2.py index f5363e8..bdb632a 100644 --- a/titles/idac/season2.py +++ b/titles/idac/season2.py @@ -877,8 +877,7 @@ class IDACSeason2(IDACBase): "vs_type": s["vs_type"], "max_clear_lv": s["max_clear_lv"], "last_play_lv": s["last_play_lv"], - # change to last_play_course_id? - "last_play_course_id": s["course_id"], + "last_play_course_id": s["last_play_course_id"] } ) @@ -898,8 +897,7 @@ class IDACSeason2(IDACBase): "vs_type": c["vs_type"], "max_clear_lv": c["max_clear_lv"], "last_play_lv": c["last_play_lv"], - # change to last_play_course_id? - "last_play_course_id": c["course_id"], + "last_play_course_id": c["last_play_course_id"], "play_count": c["play_count"], } )