forked from Dniel97/artemis
wacca: move allowed_stages into __init__ for s
This commit is contained in:
parent
f71591e622
commit
346f82a32a
@ -11,25 +11,24 @@ from titles.wacca.handlers import *
|
|||||||
|
|
||||||
|
|
||||||
class WaccaS(WaccaBase):
|
class WaccaS(WaccaBase):
|
||||||
allowed_stages = [
|
|
||||||
(1513, 13),
|
|
||||||
(1512, 12),
|
|
||||||
(1511, 11),
|
|
||||||
(1510, 10),
|
|
||||||
(1509, 9),
|
|
||||||
(1508, 8),
|
|
||||||
(1507, 7),
|
|
||||||
(1506, 6),
|
|
||||||
(1505, 5),
|
|
||||||
(1504, 4),
|
|
||||||
(1503, 3),
|
|
||||||
(1502, 2),
|
|
||||||
(1501, 1),
|
|
||||||
]
|
|
||||||
|
|
||||||
def __init__(self, cfg: CoreConfig, game_cfg: WaccaConfig) -> None:
|
def __init__(self, cfg: CoreConfig, game_cfg: WaccaConfig) -> None:
|
||||||
super().__init__(cfg, game_cfg)
|
super().__init__(cfg, game_cfg)
|
||||||
self.version = WaccaConstants.VER_WACCA_S
|
self.version = WaccaConstants.VER_WACCA_S
|
||||||
|
self.allowed_stages = [
|
||||||
|
(1513, 13),
|
||||||
|
(1512, 12),
|
||||||
|
(1511, 11),
|
||||||
|
(1510, 10),
|
||||||
|
(1509, 9),
|
||||||
|
(1508, 8),
|
||||||
|
(1507, 7),
|
||||||
|
(1506, 6),
|
||||||
|
(1505, 5),
|
||||||
|
(1504, 4),
|
||||||
|
(1503, 3),
|
||||||
|
(1502, 2),
|
||||||
|
(1501, 1),
|
||||||
|
]
|
||||||
|
|
||||||
async def handle_advertise_GetNews_request(self, data: Dict) -> Dict:
|
async def handle_advertise_GetNews_request(self, data: Dict) -> Dict:
|
||||||
resp = GetNewsResponseV2()
|
resp = GetNewsResponseV2()
|
||||||
|
Loading…
Reference in New Issue
Block a user