mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2025-07-10 12:00:36 +02:00
Compare commits
1 Commits
1.0.2
...
4eaba4f6e1
Author | SHA1 | Date | |
---|---|---|---|
4eaba4f6e1 |
@ -4,7 +4,6 @@
|
|||||||
|
|
||||||

|

|
||||||

|

|
||||||
[](https://content.minetest.net/packages/D00Med/scifi_nodes/)
|
|
||||||
|
|
||||||
Minetest mod that adds scifi themed blocks, doors, materials, plants and other assets.
|
Minetest mod that adds scifi themed blocks, doors, materials, plants and other assets.
|
||||||
|
|
||||||
|
@ -1680,7 +1680,7 @@ minetest.register_craft({
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'scifi_nodes:stripes2top 3',
|
output = 'scifi_nodes:stripes2top 3',
|
||||||
recipe = {
|
recipe = {
|
||||||
{"scifi_nodes:black","scifi_nodes:black","scifi_nodes:black"},
|
{"scifi_nodes:black","scifi_noedes:black","scifi_nodes:black"},
|
||||||
{"default:silver_sand","default:silver_sand","default:silver_sand"}
|
{"default:silver_sand","default:silver_sand","default:silver_sand"}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -1692,3 +1692,4 @@ minetest.register_craft({
|
|||||||
{"scifi_nodes:stripes"}
|
{"scifi_nodes:stripes"}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
2
init.lua
2
init.lua
@ -22,3 +22,5 @@ dofile(MP.."/digicode.lua")
|
|||||||
dofile(MP.."/models.lua")
|
dofile(MP.."/models.lua")
|
||||||
dofile(MP.."/crafts.lua")
|
dofile(MP.."/crafts.lua")
|
||||||
dofile(MP.."/octagon_panes.lua")
|
dofile(MP.."/octagon_panes.lua")
|
||||||
|
|
||||||
|
minetest.log("action", "[scifi_nodes] loaded.")
|
||||||
|
@ -19,7 +19,7 @@ local function register(basename, description, texture)
|
|||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {{-0.5, -0.5, -0.03125, 0.5, 0.5, 0.03125}},
|
fixed = {{-0.5, -0.5, 0, 0.5, 0.5, 0}},
|
||||||
},
|
},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
@ -44,7 +44,7 @@ local function register(basename, description, texture)
|
|||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {{-0.5, -0.5, -0.03125, 0.5, 1.5, 0.03125}},
|
fixed = {{-0.5, -0.5, 0, 0.5, 1.5, 0}},
|
||||||
},
|
},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
@ -69,7 +69,7 @@ local function register(basename, description, texture)
|
|||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {{-0.5, -0.5, 0.96875, 0.5, 0.5, 1.03125}},
|
fixed = {{-0.5, -0.5, 1, 0.5, 0.5, 1}},
|
||||||
},
|
},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
Reference in New Issue
Block a user