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;