From e88601a4ee0025e438beab3d9f3c24ec58b14d0b Mon Sep 17 00:00:00 2001 From: luying Date: Sun, 26 Dec 2021 22:32:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A8=E9=80=81=EF=BC=9A=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E6=8E=A8=E9=80=81=E5=A2=9E=E5=8A=A0=E9=95=87=E5=BF=B5=E5=A1=94?= =?UTF-8?q?=E7=AD=89=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/app/services/normalBattleService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game-server/app/services/normalBattleService.ts b/game-server/app/services/normalBattleService.ts index 384e52917..879b8fb53 100644 --- a/game-server/app/services/normalBattleService.ts +++ b/game-server/app/services/normalBattleService.ts @@ -142,7 +142,7 @@ export function calculateWarStar(warStar: WarStar[] = [], battleId: number, star } export async function getBattleListOfMain(role: RoleType) { - let types = [ WAR_TYPE.NORMAL, WAR_TYPE.VESTIGE, WAR_TYPE.MAIN_ELITE ]; + let types = [ WAR_TYPE.NORMAL, WAR_TYPE.VESTIGE, WAR_TYPE.MAIN_ELITE, WAR_TYPE.TOWER, WAR_TYPE.MYSTERY, WAR_TYPE.MYSTERY_ELITE ]; let result = []; for(let type of types) { let list = await getBattleList(role, type);