Commit 8fa215b7241f874962344b5e4da5bd498bcaa4be
1 parent
06245e45
第一部分强制引导结束,餐厅引导未开启,此时顾客刷新顺序是错的
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/models/Diner.lua
... | ... | @@ -72,7 +72,7 @@ function Diner:refreshDailyData(notify) |
72 | 72 | |
73 | 73 | local guide = self.owner:getProperty("newerGuide") |
74 | 74 | local master, slave = string.match(guide,"(%d+)=(%d+)") |
75 | - if tonumber(master) <= 26 then | |
75 | + if self.owner:getProperty("funcGuide"):getv(51,0) == 0 or tonumber(master) <= 26 then | |
76 | 76 | entrust[1] = 1001 |
77 | 77 | entrust[2] = 1 |
78 | 78 | elseif tonumber(master) <= 29 then | ... | ... |