Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
Kherae committed Oct 12, 2024
1 parent a162545 commit 8239228
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stats/effects/heal/healradioactive.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function init()
end

function update(dt)
local species = status.statusProperty("fr_race") or world.entitySpecies(entity.id())
-- local species = status.statusProperty("fr_race") or world.entitySpecies(entity.id())

-- if (species == "radien") or (species == "novakid") or (species == "shadow") then
if (status.statPositive("fuRadiationHeal")) then
Expand Down
2 changes: 1 addition & 1 deletion stats/effects/slimeslow/slimeslow.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ end
function update(dt)
if not self.didInit then init() end

ifstatus.statPositive("fuSlimeHeals") then
if status.statPositive("fuSlimeHeals") then
self.healingRate = 0.025
effect.setStatModifierGroup(bonusHandler,{{stat="healthRegen",amount=status.stat("maxHealth")*self.healingRate*math.max(0,1+status.stat("healingBonus"))}})
applyFilteredModifiers({
Expand Down

0 comments on commit 8239228

Please sign in to comment.