From 7c48d15417221316f4006334580ed14fdedd8cee Mon Sep 17 00:00:00 2001 From: luying Date: Tue, 16 May 2023 15:43:52 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix(pvp):=20=E5=BC=80=E6=9C=8D?= =?UTF-8?q?=E6=B2=A1=E6=9C=89=E5=AD=98=E5=82=A8=E6=9C=8D=E5=8A=A1=E5=99=A8?= =?UTF-8?q?=E5=92=8C=E6=88=98=E5=8C=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/app/services/serverService.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/game-server/app/services/serverService.ts b/game-server/app/services/serverService.ts index 7a66d7060..0d118779b 100644 --- a/game-server/app/services/serverService.ts +++ b/game-server/app/services/serverService.ts @@ -173,6 +173,7 @@ export async function createNewServer(region: RegionType ,serverId: number, para await redisClient().hsetAsync(REDIS_KEY.SERVER_OPEN_TIME, `${newServer.id}`, `${newServer.openTime}`); await pinus.app.rpc.guild.guildRemote.setServerGroup.broadcast(); await pinus.app.rpc.chat.chatRemote.setServerGroup.broadcast(); + await pinus.app.rpc.battle.battleRemote.setServerGroup.broadcast(); await pinus.app.rpc.connector.connectorRemote.setServerGroup.broadcast(); await pinus.app.rpc.gm.gmRemote.setServerGroup.broadcast(); await pinus.app.rpc.systimer.systimerRemote.setServerGroup.broadcast();