1
0
mirror of https://github.com/D00Med/scifi_nodes.git synced 2025-07-15 22:40:24 +02:00

24 Commits

Author SHA1 Message Date
8816db8ecf Merge remote-tracking branch 'upstream/master' 2021-11-01 10:41:33 +01:00
1558b4c146 remove duplicate craft recipe (#65) 2021-10-13 14:34:36 +02:00
cb515e60f1 Fix recipe collision (#64)
* Fixed Recipe-Collision.
2021-10-11 09:04:12 +02:00
5b903a6e78 Merge remote-tracking branch 'upstream/master' 2021-10-04 21:49:01 +02:00
4fc833bb00 fix default setting value for mesecons-only door operation 2021-09-30 10:50:12 +02:00
5788062fac update contributors 2021-09-30 10:50:12 +02:00
1c8024401f add setting for teleporter pad 2021-09-30 10:50:12 +02:00
1273b627c2 add crafting recipe for teleporter pad 2021-09-30 10:50:12 +02:00
eb231d7ca7 Merge remote-tracking branch 'upstream/master' 2021-08-31 19:59:22 +02:00
2fd4de11c0 Merge remote-tracking branch 'upstream/master' 2021-08-16 18:18:21 +02:00
b88b7349a5 Merge remote-tracking branch 'upstream/master' 2021-06-20 17:30:14 +02:00
c30ae4b3bd Merge remote-tracking branch 'upstream/master' 2021-05-09 21:44:34 +02:00
6cf45fcd43 Merge remote-tracking branch 'upstream/master' 2021-03-25 21:58:42 +01:00
1ded358e04 Merge branch 'github' 2021-03-20 13:38:15 +01:00
ecfaa4714a Fix things to avoid warnings about use_texture_alpha
And optimize textures with optipng
2021-03-20 13:33:39 +01:00
c341cb8a20 Merge remote-tracking branch 'upstream/master' 2021-01-29 17:43:56 +01:00
d66e04f9b1 Merge remote-tracking branch 'upstream/master' 2020-12-24 21:10:26 +01:00
d3d6a7bf79 Merge remote-tracking branch 'upstream/master' 2020-12-18 12:21:17 +01:00
e34fdde795 Merge remote-tracking branch 'upstream/master' 2020-12-15 23:41:17 +01:00
1993068ed1 Merge remote-tracking branch 'upstream/master' 2020-11-12 22:04:59 +01:00
436f51ab0d Merge remote-tracking branch 'upstream/master' 2020-11-10 19:59:40 +01:00
749d59a530 Merge remote-tracking branch 'upstream/master' 2020-09-13 12:28:42 +02:00
bd58dbc48b Merge remote-tracking branch 'upstream/master' 2020-07-23 11:42:19 +02:00
4eaba4f6e1 Adds loading message in the Action Log 2020-07-21 11:52:47 +02:00
4 changed files with 24 additions and 14 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)
@ -1472,9 +1486,9 @@ minetest.register_craft({
minetest.register_craft({ minetest.register_craft({
output = "scifi_nodes:plant8", output = "scifi_nodes:plant8",
recipe = { recipe = {
{"flowers:viola","default:junglegrass"}, {"flowers:viola","default:junglegrass", "default:grass_1"},
{"default:dirt",""}, {"default:dirt","",""},
{"scifi_nodes:greybolts",""} {"scifi_nodes:greybolts","",""}
} }
}) })
@ -1621,15 +1635,6 @@ minetest.register_craft({
} }
}) })
minetest.register_craft({
output = 'scifi_nodes:doomwall43 6',
recipe = {
{"scifi_nodes:white","dye:black","scifi_nodes:white"},
{"scifi_nodes:black","dye:dark_green","scifi_nodes:black"},
{"scifi_nodes:white","dye:yellow","scifi_nodes:white"}
}
})
minetest.register_craft({ minetest.register_craft({
output = 'scifi_nodes:doomwall43 6', output = 'scifi_nodes:doomwall43 6',
recipe = { recipe = {

View File

@ -31,3 +31,4 @@ dofile(MP.."/digicode.lua")
dofile(MP.."/models.lua") dofile(MP.."/models.lua")
dofile(MP.."/octagon_panes.lua") dofile(MP.."/octagon_panes.lua")
dofile(MP.."/crafts.lua") dofile(MP.."/crafts.lua")
minetest.log("action", "[scifi_nodes] loaded.")

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