Commit 88139f7395b1f7725955c0cc6f7548d8a0a4b357

Authored by zhangqijia
1 parent 3ef17154

feat: 重置buff协议

Showing 2 changed files with 12 additions and 7 deletions   Show diff stats
game.proto
... ... @@ -113,6 +113,10 @@ message RoleBuffRar {
113 113 map<int32,int32> buffs = 3;
114 114 }
115 115  
  116 +message RoleResetBuffRar {
  117 + string chapter_id = 1;
  118 +}
  119 +
116 120 message EquipmentDelRar {
117 121 repeated string id = 1;
118 122 }
... ...
protocode.proto
... ... @@ -18,13 +18,14 @@ enum ProtoCode
18 18 RoleTaskRpc = 510;
19 19 RoleOpenBoxRpc = 511;
20 20 RoleBuffRpc = 512;
21   - EquipmentDelRpc = 513;
22   - HeroUpLevelRpc = 514;
23   - EmailListRpc = 515;
24   - EmailDrawRpc = 516;
25   - EmailCheckRpc = 517;
26   - EmailDelRpc = 518;
27   - StoreBuyRpc = 519;
  21 + RoleResetBuffRpc = 513;
  22 + EquipmentDelRpc = 514;
  23 + HeroUpLevelRpc = 515;
  24 + EmailListRpc = 516;
  25 + EmailDrawRpc = 517;
  26 + EmailCheckRpc = 518;
  27 + EmailDelRpc = 519;
  28 + StoreBuyRpc = 520;
28 29  
29 30 DisConnectNty = 1001;
30 31 RoleUpdatePropertyNty = 1002;
... ...