Skip to content
Snippets Groups Projects
Commit 4fd924e8 authored by dg's avatar dg
Browse files

drop the ball on patch file names ! :)


git-svn-id: http://svn.net-core.org/repos/t-engine4@5468 51575b47-30f0-44d4-a5cc-537603b46e54
parent 22f6bf4b
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,7 @@ newTalent{
end
local damage = self:mindCrit(t.getDamage(self, t))
local power = self:mindCrit(t.getSleepPower(self, t))
self:project(tg, x, y, function(tx, ty)
local target = game.level.map(tx, ty, Map.ACTOR)
if target then
......
......@@ -2587,12 +2587,12 @@ newEffect{
end
else
-- Store the power for later
local real_power = eff.power
-- Temporarily spike the power so the nightmare doesn't break it
eff.power = 10000
local real_power = eff.temp_power or eff.power
-- Temporarily spike the temp_power so the nightmare doesn't break it
eff.temp_power = 10000
DamageType:get(DamageType.DARKNESS).projector(eff.src or self, self.x, self.y, DamageType.DARKNESS, eff.dam)
-- Set the power back to its baseline
eff.power = real_power
eff.temp_power = real_power
end
if eff.particle and not dream_prison then
self:removeParticles(eff.particle)
......
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