Skip to content

Commit

Permalink
fix stamina multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
MillhioreBT committed May 1, 2024
1 parent 7634e54 commit 00053fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/lib/core/player.lua
Original file line number Diff line number Diff line change
Expand Up @@ -338,9 +338,9 @@ do

local staminaMinutes = self:getStamina()
if staminaMinutes > 2400 and self:isPremium() then
self:addExperienceRate(ExperienceRateType.STAMINA, 50)
self:setExperienceRate(ExperienceRateType.STAMINA, 150)
elseif staminaMinutes <= 840 then
self:addExperienceRate(ExperienceRateType.STAMINA, -50)
self:setExperienceRate(ExperienceRateType.STAMINA, 100)
end
return true
end
Expand Down

0 comments on commit 00053fe

Please sign in to comment.