Skip to content
Snippets Groups Projects
Commit 6883608a authored by dg's avatar dg
Browse files

Meteoric Crash will not damage the caster even without Spellcraft

git-svn-id: http://svn.net-core.org/repos/t-engine4@5842 51575b47-30f0-44d4-a5cc-537603b46e54
parent 380cbaff
No related branches found
No related tags found
No related merge requests found
......@@ -82,9 +82,9 @@ uberTalent{
game.nicer_tiles:updateAround(game.level, i, j)
end end
src:project({type="ball", radius=2, selffire=src:spellFriendlyFire()}, x, y, engine.DamageType.FIRE, dam/2)
src:project({type="ball", radius=2, selffire=src:spellFriendlyFire()}, x, y, engine.DamageType.PHYSICAL, dam/2)
src:project({type="ball", radius=2, selffile=src:spellFriendlyFire()}, x, y, function(px, py)
src:project({type="ball", radius=2, selffire=false}, x, y, engine.DamageType.FIRE, dam/2)
src:project({type="ball", radius=2, selffire=false}, x, y, engine.DamageType.PHYSICAL, dam/2)
src:project({type="ball", radius=2, selffile=false}, x, y, function(px, py)
local target = game.level.map(px, py, Map.ACTOR)
if target then
if target:canBe("stun") then
......
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