Commit a102181c13a87f14aa06dad30dfa4836b26e9f0b

Authored by zhangqijia
1 parent e64dfe99

fix: id自增做了写更新。阵容变换协议修改

Showing 2 changed files with 2 additions and 2 deletions   Show diff stats
game.proto
... ... @@ -38,6 +38,6 @@ message UpdateRolePropertyRsp {
38 38 models.Role role = 2;
39 39 }
40 40  
41   -message GoIntoBattleReq {
  41 +message ChangeTeamReq {
42 42 repeated models.Team team = 1;
43 43 }
44 44 \ No newline at end of file
... ...
protocode.proto
... ... @@ -13,6 +13,6 @@ enum ProtoCode
13 13 CreateReq = 5;
14 14 RoleRsp = 6;
15 15 UpdateRolePropertyRsp = 7;
16   - GoIntoBattleReq = 8;
  16 + ChangeTeamReq = 8;
17 17  
18 18 }
19 19 \ No newline at end of file
... ...