4 Commits

Author SHA1 Message Date
BuckarooBanzay
17725e0ba9 fix default setting value for mesecons-only door operation 2021-09-28 13:08:47 +02:00
BuckarooBanzay
fd17f7c2e1 update contributors 2021-09-28 13:08:26 +02:00
BuckarooBanzay
e0e3a306fb add setting for teleporter pad 2021-09-28 13:07:19 +02:00
Niles Corder
7a8a5a672c add crafting recipe for teleporter pad 2021-09-26 03:17:15 +00:00
3 changed files with 20 additions and 2 deletions

View File

@@ -55,3 +55,4 @@ CC0
* OgelGames https://github.com/OgelGames * OgelGames https://github.com/OgelGames
* leftshift https://github.com/leftshift * leftshift https://github.com/leftshift
* fluxionary https://github.com/fluxionary * fluxionary https://github.com/fluxionary
* Niles Corder https://github.com/ncorder

View File

@@ -10,8 +10,22 @@ if minetest.get_modpath("basic_materials") then
{"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting"} {"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "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 end
if not minetest.get_modpath("default") or not minetest.get_modpath("dye") then if not minetest.get_modpath("default") or not minetest.get_modpath("dye") then
-- the default and dye mod are required for most of the recipes -- the default and dye mod are required for most of the recipes
-- if either of them is missing (because we are not in the default game) -- if either of them is missing (because we are not in the default game)

View File

@@ -1,2 +1,5 @@
# Doors can only be opened by mesecon signal # Doors can only be opened by mesecon signal
scifi_nodes.doors_open_with_mesecon_only (disables right click on doors) bool true scifi_nodes.doors_open_with_mesecon_only (disables right click on doors) bool false
# Teleporter recipe flag
scifi_nodes.teleporter_enable_crafting (enables the teleporter recipe) bool false