diff --git a/game/modules/tome/data/talents/gifts/fungus.lua b/game/modules/tome/data/talents/gifts/fungus.lua index dd09fbac79863ef39e75fcebe71be51427d35de9..b13672fd0c31d018809e79ab809edb71c5e2d19f 100644 --- a/game/modules/tome/data/talents/gifts/fungus.lua +++ b/game/modules/tome/data/talents/gifts/fungus.lua @@ -75,7 +75,7 @@ newTalent{ local heal = (self.life + value) < self.max_life and value or self.max_life - self.life if heal > 0 then local amt = (heal / 100) * (t.getTurn(self, t) * game.energy_to_act) - self.energy.value = game.energy_to_act + amt + self.energy.value = self.energy.value + amt self.energy.value = math.min(self.energy.value, game.energy_to_act * 2) self.ancestral_healing_display_amt = self.ancestral_healing_display_amt or 0 self.ancestral_healing_display_amt = self.ancestral_healing_display_amt + amt