diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 65a3df6..c3d8c92 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -1209,13 +1209,11 @@ option optimize_for = SPEED; } //探索地图 message ExplorerMapInfo{ - optional int32 mapId = 1; //地图id - repeated ExplorerMapTeamInfo teamInfo = 2 ; //队伍信息 - } - message ExplorerMapTeamInfo{ - optional int32 teamId = 1 ; //队伍id - optional int32 hp = 2; //队伍血量 - optional int32 exploreTime = 3;//探索时间 + optional int32 teamId = 1; //队伍id + optional int32 mapId = 2 ; //地图id + optional int32 hp = 3; //队伍血量 + optional int32 exploreTime = 4;//探索时间 + repeated int32 dropReward = 5 ;//掉落组 } - +