Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Illuna-Minetest/homedecor_modpack
1 result
Show changes
Commits on Source (1)
......@@ -190,8 +190,8 @@ for _, mat in ipairs(materials) do
})
minetest.register_craft({
type = "shapeless",
output = 'fake_fire:chimney_top_'..m,
recipe = {"default:torch", "moreblocks:slab_"..m}
output = 'fake_fire:chimney_top_'..name,
recipe = {"default:torch", "moreblocks:slab_"..name}
})
end
......
......@@ -16,7 +16,7 @@ homedecor = {
modpath = modpath,
-- infinite stacks
expect_infinite_stacks = minetest.settings:get_bool("creative_mode") and not minetest.get_modpath("unified_inventory")
expect_infinite_stacks = --[[ minetest.settings:get_bool("creative_mode") and ]] not minetest.get_modpath("unified_inventory")
}
-- Determine if the item being pointed at is the underside of a node (e.g a ceiling)
......