【战斗】改为第三回合时战斗就可以跳过

dev_chengFeng
gaoxin 2021-11-24 14:21:44 +08:00
parent 86dff44ce7
commit f01889db21
1 changed files with 4 additions and 4 deletions

View File

@ -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,