Commit 1d601dcd authored by Milan's avatar Milan
Browse files

drop one more 'settings:get' function hopefully without breaking anything

update old 'm' variable to 'name' in fake_fire (leftover from previous merge)
parent dd8b9e10
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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

+1 −1
Original line number Diff line number Diff line
@@ -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)