fixed vapors being walkable

master
Izzy 2019-04-12 22:14:16 -06:00
parent c5d96fec2d
commit 97b20b3f02
1 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,7 @@ minetest.register_node("bitumen:vapor_2", {
drawtype = "airlike", drawtype = "airlike",
pointable = false, pointable = false,
diggable = false, diggable = false,
walkable = false,
buildable_to = true, buildable_to = true,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
@ -22,6 +23,7 @@ minetest.register_node("bitumen:vapor_1", {
drawtype = "airlike", drawtype = "airlike",
pointable = false, pointable = false,
diggable = false, diggable = false,
walkable = false,
buildable_to = true, buildable_to = true,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
@ -146,7 +148,7 @@ minetest.register_abm({
-- go up in flames -- go up in flames
minetest.register_abm({ minetest.register_abm({
nodenames = {"bitumen:vapor_1", "bitumen:vapor_2"}, nodenames = {"bitumen:vapor_1", "bitumen:vapor_2"},
neighbors = {"group:igniter", "default:torch"}, neighbors = {"group:igniter", "default:torch", "default:furnace_active"},
interval = 1, interval = 1,
chance = 3, chance = 3,
action = function(pos, node, active_object_count, active_object_count_wider) action = function(pos, node, active_object_count, active_object_count_wider)