diff --git a/lua/app/userdata/bounty/bounty_data.lua b/lua/app/userdata/bounty/bounty_data.lua index d7633749..f90b7f51 100644 --- a/lua/app/userdata/bounty/bounty_data.lua +++ b/lua/app/userdata/bounty/bounty_data.lua @@ -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