Commit f02d37212fe4650a271a8de7b39b0782a545c8d6

Authored by zhangqijia
1 parent 1e73b33b

fix: task_open

Showing 1 changed file with 8 additions and 5 deletions   Show diff stats
role.proto
... ... @@ -32,8 +32,9 @@ message LoginRsp {
32 32 map<int32,bool> activity_open = 8;
33 33 int64 time_now = 9;
34 34 models.Task task = 10;
35   - map<int32,bool> task_open = 11;
36   - map<string,models.Dispatch> dispatch = 12;
  35 + map<string,models.Dispatch> dispatch = 11;
  36 + map<int32,bool> circle_task = 12;
  37 + map<int32,bool> limit_task = 13;
37 38 }
38 39  
39 40 message CreateRar {
... ... @@ -238,8 +239,9 @@ message ReconnectRsp {
238 239 map<int32,bool> activity_open = 8;
239 240 int64 time_now = 9;
240 241 models.Task task = 10;
241   - map<int32,bool> task_open = 11;
242   - map<string,models.Dispatch> dispatch = 12;
  242 + map<string,models.Dispatch> dispatch = 11;
  243 + map<int32,bool> circle_task = 12;
  244 + map<int32,bool> limit_task = 13;
243 245 }
244 246  
245 247 message RoleLuckyStartReq {
... ... @@ -271,5 +273,6 @@ message RoleCostDiamondAddSpRsp {
271 273 }
272 274  
273 275 message RoleTaskOpenNty {
274   - map<int32,bool> task_open = 1;
  276 + map<int32,bool> circle_task = 1;
  277 + map<int32,bool> limit_task = 2;
275 278 }
276 279 \ No newline at end of file
... ...