Skip to content
Snippets Groups Projects
Commit a359e151 authored by Eric Wykoff's avatar Eric Wykoff
Browse files

discontinuity fix

parent 18af5a85
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ newTalent{
self:project(tg, x, y, function(px, py, tg, self)
local oe = game.level.map(px, py, Map.TERRAIN)
if not oe or oe.special then return end
if not oe or oe:attr("temporary") or game.level.map:checkAllEntities(px, py, "block_move") then return end
if not oe or oe:attr("temporary") or game.level.map:checkEntity(px, py, Map.TERRAIN, "block_move") then return end
local e = Object.new{
old_feat = oe,
type = "void", subtype = "void",
......
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