mirror of
https://gitea.tendokyu.moe/Dniel97/artemis.git
synced 2026-09-22 22:28:25 +03:00
## Changes: - [x] Added database upgrade script for season 3 tables - [x] Completly implement season 3 - [x] Teams are fully functional as intended - [x] Time Release is properly updated for season 3 (v2.10.00) - [x] New accounts can be created and saved in db - [x] Old 2eason 2 accounts can be transfered to season 3 - [x] Season independed config has been added inclusive version specific configs Co-authored-by: puniru <puniru@posteo.jp> Reviewed-on: https://gitea.tendokyu.moe/Dniel97/artemis-IDAC/pulls/1 Co-authored-by: Dniel97 <Dniel97@noreply.gitea.tendokyu.moe> Co-committed-by: Dniel97 <Dniel97@noreply.gitea.tendokyu.moe>
19 lines
605 B
Python
19 lines
605 B
Python
from core.config import CoreConfig
|
|
|
|
from titles.idac.config import IDACServerConfig
|
|
from titles.idac.const import IDACConstants
|
|
from titles.idac.controller.season2.log_controller import IDACSeason2LogController
|
|
from titles.idac.gameconfig.season3_config import IDACSeason3Config
|
|
|
|
|
|
class IDACSeason3LogController(IDACSeason2LogController):
|
|
def __init__(
|
|
self,
|
|
core_cfg: CoreConfig,
|
|
server_cfg: IDACServerConfig,
|
|
game_cfg: IDACSeason3Config,
|
|
) -> None:
|
|
super().__init__(core_cfg, server_cfg, game_cfg)
|
|
|
|
self.version = IDACConstants.VER_IDAC_SEASON_3
|