Commit 13e7d6bb975e3f590223cf6926110887ccc54739

Authored by zhouhaihai
1 parent a205084c

加速时间提取

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/models/Diner.lua
... ... @@ -266,7 +266,7 @@ function Diner:expediteSell(slot)
266 266 end
267 267 local dishData = csvdb["diner_dishCsv"][sell.dish][sell.level]
268 268 local expediteCount = 0
269   - local expediteTime = 7200
  269 + local expediteTime = globalCsv.diner_sell_expediteTime
270 270 local sellTime = dishData.sell_time
271 271 expediteCount = math.floor(expediteTime / sellTime)
272 272 expediteCount = math.min(expediteCount, sell.count)
... ...