【战斗】改为第三回合时战斗就可以跳过
parent
86dff44ce7
commit
f01889db21
|
|
@ -54,8 +54,8 @@ local UpdateBtnGMFunc = {
|
|||
-- if FightPointPassManager.GetCurOpenFightIdIsBoss() then
|
||||
-- return SKIP_STATE.NOUSE, "首领关卡无法跳过!"
|
||||
-- end
|
||||
if this.curRound <= 3 then
|
||||
return SKIP_STATE.NOUSE, "跳过功能将在第三回合后解锁"
|
||||
if this.curRound < 3 then
|
||||
return SKIP_STATE.NOUSE, "跳过功能将在第三回合解锁"
|
||||
end
|
||||
return SKIP_STATE.UNLOCK
|
||||
end,
|
||||
|
|
@ -66,8 +66,8 @@ local UpdateBtnGMFunc = {
|
|||
-- if FightPointPassManager.GetCurOpenFightIdIsBoss() then
|
||||
-- return SKIP_STATE.NOUSE, "首领关卡无法跳过!"
|
||||
-- end
|
||||
if this.curRound <= 3 then
|
||||
return SKIP_STATE.NOUSE, "跳过功能将在第三回合后解锁"
|
||||
if this.curRound < 3 then
|
||||
return SKIP_STATE.NOUSE, "跳过功能将在第三回合解锁"
|
||||
end
|
||||
return SKIP_STATE.UNLOCK
|
||||
end,
|
||||
|
|
|
|||
Loading…
Reference in New Issue