From 217bff9b0838de733620dab3402b5aab2b6db4fa Mon Sep 17 00:00:00 2001 From: xuexinpeng Date: Fri, 24 Dec 2021 17:33:41 +0800 Subject: [PATCH] tansuo --- protos/CommonProto.proto | 2 +- protos/PlayerInfoProto.proto | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 29787fd..95a3c7b 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -1218,7 +1218,7 @@ option optimize_for = SPEED; optional int32 mapId = 2 ; //地图id optional int32 hp = 3; //队伍血量 optional int32 exploreTime = 4;//探索时间 - repeated CommKeyVal dropReward = 5 ;//掉落组 + repeated CommKeyVal dropReward = 5 ;//掉落物品 } message ExplorerMapSendInfo{ optional int32 mapId = 1; //地图id diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 9159af4..4b755f8 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -1074,12 +1074,13 @@ import "CommonProto.proto"; } //领取探索奖励 message ExplorerMapRewardRequest{ - optional int32 type = 1; //0:停止探索 1:领取奖励 + optional int32 type = 1; //0:停止探索 optional int32 teamId = 2; //队伍id } message ExplorerMapRewardResponse{ optional Drop drop = 1 ;//探索奖励 + optional ExplorerMapInfo exploreInfo = 2;//探索地图信息 } message ExplorerMapIndicationResponse{