mirror of
https://gitea.tendokyu.moe/Dniel97/artemis.git
synced 2026-09-22 22:28:25 +03:00
idac: fix vs info battle enum
This commit is contained in:
@@ -188,9 +188,6 @@ class IDACConstants:
|
||||
VER_IDAC_SEASON_2 = 1
|
||||
VER_IDAC_SEASON_3 = 2
|
||||
|
||||
BATTLE_MODE_ONLINE = 0
|
||||
BATTLE_MODE_OFFLINE = 1
|
||||
|
||||
VERSION_STRING = (
|
||||
"Initial D THE ARCADE Season 1",
|
||||
"Initial D THE ARCADE Season 2",
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
from titles.idac.const import VSInfoBattleModeEnum
|
||||
from titles.idac.model.common_model import DtoModel
|
||||
|
||||
|
||||
class VsInfoDto(DtoModel):
|
||||
battle_mode: int
|
||||
battle_mode: VSInfoBattleModeEnum
|
||||
invalid: int
|
||||
str: int
|
||||
str_now: int
|
||||
@@ -13,7 +14,7 @@ class VsInfoDto(DtoModel):
|
||||
|
||||
|
||||
class VsCourseInfoDto(DtoModel):
|
||||
battle_mode: int
|
||||
battle_mode: VSInfoBattleModeEnum
|
||||
course_id: int
|
||||
vs_cnt: int
|
||||
vs_win: int
|
||||
|
||||
Reference in New Issue
Block a user