diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 33d0909..fa14195 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -545,6 +545,8 @@ enum MessageType{ UPDATE_USER_EXP_INDICATION = 12011 ; // 更新玩家等级经验信息 + UPDATE_SECRET_BOX_SEASON_INDICATION = 12012; // 更新秘盒赛季信息 + // V 12100 VIEW_FIGHTREPLAY_REQUEST = 12100; // 查看战斗回放 VIEW_FIGHTREPLAY_RESPONSE = 12101; diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 9578a5c..ba441bc 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -471,3 +471,8 @@ import "CommonProto.proto"; optional int32 exp =2 ; // 玩家经验 } + + message UpdateSecretBoxSeasonIndication{ + optional int32 newSeasonId = 1 ;// 新的赛季id id=0 代表功能已关闭 + } +