战令等级bug

This commit is contained in:
chenxi 2023-06-15 16:57:32 +08:00
parent c6361d035f
commit e97edc01df

View File

@ -258,7 +258,7 @@ function BountyData:getIfCanClaimReward()
if self.claimedCount < self.level then
return true
end
if self.bought and self.proClaimedCount < self:getMaxLevel() then
if self.bought and self.level <= self:getMaxLevel() and self.proClaimedCount < self.level then
return true
end
return false