From 57fb2b364320c5bc51e60da5fda558ca847d3c55 Mon Sep 17 00:00:00 2001 From: crabman77 Date: Thu, 3 Sep 2015 22:49:38 +0200 Subject: [PATCH] fix fire arrows don't touch fire --- mods/throwing/fire_arrow.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/throwing/fire_arrow.lua b/mods/throwing/fire_arrow.lua index 2e5ab9af..49ebcd5e 100755 --- a/mods/throwing/fire_arrow.lua +++ b/mods/throwing/fire_arrow.lua @@ -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