【森罗幻境】奖励红点修改

dev_chengFeng
ZhangBiao 2020-12-28 11:59:27 +08:00
parent 8a23b4da2d
commit b6037a00e3
1 changed files with 5 additions and 1 deletions

View File

@ -199,7 +199,11 @@ function this.GetTrialRewardState(id)
end
end
end
return 1
if this.killCount < trialKillConfig[id].Count then
return 2
elseif this.killCount >= trialKillConfig[id].Count then
return 1
end
end
--任务红点检测
function this.TrialRewardRedPointCheck()