军团:修复军团id回guildCode

This commit is contained in:
luying
2021-11-10 19:52:21 +08:00
parent a7f3bcc730
commit 16119ac7a8

View File

@@ -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;