From 97b20b3f027081c241c6ec882caa861c07972708 Mon Sep 17 00:00:00 2001 From: Izzy Date: Fri, 12 Apr 2019 22:14:16 -0600 Subject: [PATCH] fixed vapors being walkable --- vapors.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vapors.lua b/vapors.lua index dd55b7b..dee0d1f 100644 --- a/vapors.lua +++ b/vapors.lua @@ -6,6 +6,7 @@ minetest.register_node("bitumen:vapor_2", { drawtype = "airlike", pointable = false, diggable = false, + walkable = false, buildable_to = true, paramtype = "light", sunlight_propagates = true, @@ -22,6 +23,7 @@ minetest.register_node("bitumen:vapor_1", { drawtype = "airlike", pointable = false, diggable = false, + walkable = false, buildable_to = true, paramtype = "light", sunlight_propagates = true, @@ -146,7 +148,7 @@ minetest.register_abm({ -- go up in flames minetest.register_abm({ nodenames = {"bitumen:vapor_1", "bitumen:vapor_2"}, - neighbors = {"group:igniter", "default:torch"}, + neighbors = {"group:igniter", "default:torch", "default:furnace_active"}, interval = 1, chance = 3, action = function(pos, node, active_object_count, active_object_count_wider)