Skip to content
Snippets Groups Projects
Commit a290ed45 authored by DarkGod's avatar DarkGod
Browse files

Prevent Putrescent Liquefaction from hitting your own minions

parent a09afd1c
No related branches found
No related tags found
No related merge requests found
......@@ -297,7 +297,7 @@ newTalent{
-- Add a lasting map effect
local radius = self:getTalentRadius(t)
ret.effect = game.level.map:addEffect(self,
ret.effect = game.level.map:c(self,
self.x, self.y, 10, -- Duration is fake, its handled by the sustain
DamageType.PUTRESCENT_LIQUEFACTION, t.getDamage(self, t),
radius,
......@@ -316,7 +316,7 @@ newTalent{
e.duration = 10 -- Duration is fake, its handled by the sustain
return true
end,
false
false, false
)
return ret
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment