Merge branch 'dev' of git.kingsome.cn:server/game2006go into dev

This commit is contained in:
yangduo 2024-09-20 19:00:38 +08:00
commit 1d6d47d305
5 changed files with 22 additions and 2 deletions

View File

@ -103,6 +103,10 @@
"switch_name": "ui.activationCode", "switch_name": "ui.activationCode",
"switch_desc": "26-激活码是否显示" "switch_desc": "26-激活码是否显示"
}, },
{
"switch_name": "circuitMatch",
"switch_desc": "27-巡回赛"
},
{ {
"switch_name": "only.allowed.superWhiteList", "switch_name": "only.allowed.superWhiteList",
"switch_desc": "100-只允许至尊白名单用户登录登录" "switch_desc": "100-只允许至尊白名单用户登录登录"

View File

@ -46,4 +46,5 @@ enum SMMessageId_e
_SMTeamStateNotify = 1002; _SMTeamStateNotify = 1002;
_SMTeamDisbandNotify = 1003; _SMTeamDisbandNotify = 1003;
_SMTeamKickoutNotify = 1004; _SMTeamKickoutNotify = 1004;
_SMPushLastBattleInfo = 1005;
} }

View File

@ -151,6 +151,15 @@ message MFTeam
optional int32 mode_id = 5; //mapMode表.id optional int32 mode_id = 5; //mapMode表.id
} }
//
message MFLastBattleInfo
{
optional int32 map_id = 1; //id
optional int32 mode_id = 2; //mapMode表.id
optional int32 start_time = 3; //
optional int32 interval_time = 6; //<=0
}
// //
message CMLogin message CMLogin
{ {
@ -359,3 +368,9 @@ message SMTeamKickoutNotify
{ {
optional string account_id = 1; //id optional string account_id = 1; //id
} }
//
message SMPushLastBattleInfo
{
repeated MFLastBattleInfo battle_list = 1; //
}

@ -1 +1 @@
Subproject commit be8947b33a3299b0bf1f666693a0c62ea82fcd31 Subproject commit c1e8c549e2fe844e6c0306696ef1c8696ce76c50

2
third_party/f5 vendored

@ -1 +1 @@
Subproject commit e6b6ca73a1ad43c8950d037e9ac5de08d8e05f5c Subproject commit fe1b7e21eb37d5494ccf32347ff368a1f011ac02