Rename mod: fire to mcl_fire

This commit is contained in:
Wuzzy 2017-02-01 16:26:43 +01:00
parent 5e609235bf
commit 3c1957b5b9
12 changed files with 15 additions and 14 deletions

View file

@ -169,7 +169,7 @@ end)
function mcl_core.set_fire(pointed_thing)
local n = minetest.get_node(pointed_thing.above)
if n.name ~= "" and n.name == "air" and not minetest.is_protected(pointed_thing.above, "fire") then
minetest.add_node(pointed_thing.above, {name="fire:basic_flame"})
minetest.add_node(pointed_thing.above, {name="mcl_fire:basic_flame"})
end
end