Commit 4a02453a9bbb5c78ea836f719aa6ea156050800f

Authored by liuzujun
1 parent a5c44c41

挂机排除噩梦难度

Showing 1 changed file with 6 additions and 2 deletions   Show diff stats
src/models/RolePlugin.lua
@@ -1691,9 +1691,13 @@ function RolePlugin.bind(Role) @@ -1691,9 +1691,13 @@ function RolePlugin.bind(Role)
1691 if not csvdb["idle_battleCsv"][nextId] then 1691 if not csvdb["idle_battleCsv"][nextId] then
1692 nextId = makeCarbonId(diff, chapterId + 1, 1) 1692 nextId = makeCarbonId(diff, chapterId + 1, 1)
1693 if not csvdb["idle_battleCsv"][nextId] then 1693 if not csvdb["idle_battleCsv"][nextId] then
1694 - nextId = makeCarbonId(diff + 1, 1, 1)  
1695 - if not csvdb["idle_battleCsv"][nextId] then 1694 + if diff + 1 == 3 then
1696 nextId = 0 1695 nextId = 0
  1696 + else
  1697 + nextId = makeCarbonId(diff + 1, 1, 1)
  1698 + if not csvdb["idle_battleCsv"][nextId] then
  1699 + nextId = 0
  1700 + end
1697 end 1701 end
1698 end 1702 end
1699 end 1703 end