IDAC: time trial should display car time now

This commit is contained in:
2023-11-06 18:11:30 +01:00
parent 1224baeade
commit acac2c4670
3 changed files with 181 additions and 287 deletions

View File

@ -7,10 +7,10 @@ from titles.idac.database import IDACData
class IDACBase:
def __init__(self, cfg: CoreConfig, game_cfg: IDACConfig) -> None:
self.core_cfg = cfg
def __init__(self, core_cfg: CoreConfig, game_cfg: IDACConfig) -> None:
self.core_cfg = core_cfg
self.game_config = game_cfg
self.game = IDACConstants.GAME_CODE
self.version = IDACConstants.VER_IDAC_SEASON_1
self.data = IDACData(cfg)
self.data = IDACData(core_cfg)
self.logger = logging.getLogger("idac")