Update 'mods/fire/init.lua'

This commit is contained in:
thunderdog1138 2020-07-16 13:18:00 +00:00
parent eaef12c0bc
commit 0f72c08d52
1 changed files with 2 additions and 2 deletions

View File

@ -170,10 +170,10 @@ minetest.register_craft({
})
-- Override coalblock to enable permanent flame above
-- Override coal_block to enable permanent flame above
-- Coalblock is non-flammable to avoid unwanted basic_flame nodes
minetest.override_item("default:coalblock", {
minetest.override_item("default:coal_block", {
after_destruct = function(pos, oldnode)
pos.y = pos.y + 1
if minetest.get_node(pos).name == "fire:permanent_flame" then