mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2025-06-30 15:10:46 +02:00
add setting for teleporter pad
This commit is contained in:
committed by
Buckaroo Banzai
parent
1273b627c2
commit
1c8024401f
19
crafts.lua
19
crafts.lua
@ -11,14 +11,17 @@ if minetest.get_modpath("basic_materials") then
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "scifi_nodes:pad",
|
||||
recipe = {
|
||||
{"homedecor:plastic_sheeting", "quartz:block", "homedecor:plastic_sheeting"},
|
||||
{"default:mese_crystal", "quartz:block", "default:mese_crystal"},
|
||||
{"homedecor:plastic_sheeting", "quartz:block", "homedecor:plastic_sheeting"}
|
||||
}
|
||||
})
|
||||
if minetest.settings:get_bool("scifi_nodes.teleporter_enable_crafting", false) then
|
||||
-- enable the teleporter pad crafting recipe only if the setting is enabled
|
||||
minetest.register_craft({
|
||||
output = "scifi_nodes:pad",
|
||||
recipe = {
|
||||
{"homedecor:plastic_sheeting", "quartz:block", "homedecor:plastic_sheeting"},
|
||||
{"default:mese_crystal", "quartz:block", "default:mese_crystal"},
|
||||
{"homedecor:plastic_sheeting", "quartz:block", "homedecor:plastic_sheeting"}
|
||||
}
|
||||
})
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user