fix fire arrows don't touch fire

This commit is contained in:
crabman77 2015-09-03 22:49:38 +02:00
parent 9ba20f49a6
commit 57fb2b3643
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ THROWING_ARROW_ENTITY.on_step = function(self, dtime)
end
end
if node.name ~= "air" and node.name ~= "throwing:light" then
if node.name ~= "air" and node.name ~= "throwing:light" and node.name ~= "fire:basic_flame" then
if node.name ~= "ignore" then
minetest.set_node(self.lastpos, {name="fire:basic_flame"})
end