From 16119ac7a8ab773ce94a23b81e15326c25a7dfd7 Mon Sep 17 00:00:00 2001 From: luying Date: Wed, 10 Nov 2021 19:52:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=86=9B=E5=9B=A2=EF=BC=9A=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=86=9B=E5=9B=A2id=E5=9B=9EguildCode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/domain/sdk.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/domain/sdk.ts b/shared/domain/sdk.ts index de2826d4e..1ea6a8684 100644 --- a/shared/domain/sdk.ts +++ b/shared/domain/sdk.ts @@ -167,7 +167,7 @@ export class CheckName37Params { export class CheckGuild37Params { game_key: string; sid: number; // 游戏区 - guildid: number; // 军团code + guildid: string; // 军团code time: number; // unix时间戳 sign: string; type: number; @@ -176,7 +176,7 @@ export class CheckGuild37Params { constructor(guildCode: string, serverId: number, type: number, content: string) { this.game_key = SDK_37_CONST.GAME_KEY; this.sid = serverId; - this.guildid = 10; + this.guildid = guildCode; this.time = nowSeconds(); this.type = type; this.content = content;