Commit 2e695358ebf6b58bb9b60402d9c84abc5b6630e2

Authored by zhangqijia
1 parent 72eaf25c

fix: 爬塔增加最高历史记录

Showing 2 changed files with 2 additions and 0 deletions   Show diff stats
game.proto
... ... @@ -190,6 +190,7 @@ message RoleEndClimbReq {
190 190  
191 191 message RoleEndClimbRsp {
192 192 string reward = 1;
  193 + int32 hishigh = 2;
193 194 }
194 195  
195 196 message EquipmentDelReq {
... ...
models.proto
... ... @@ -123,4 +123,5 @@ message Role {
123 123 int64 ctime = 28; // 创建时间
124 124 string channel = 29;
125 125 string climb_reward = 30;
  126 + map<int32,int32> climb_hishigh = 31;
126 127 }
127 128 \ No newline at end of file
... ...