1
0
mirror of https://github.com/D00Med/scifi_nodes.git synced 2025-06-28 22:26:37 +02:00

5 Commits

Author SHA1 Message Date
eed0d601be add contentdb badge 2020-11-11 12:13:38 +01:00
16ff4dcdb8 fix recipe typo for "scifi_nodes:stripes2top" 2020-11-07 19:20:53 +01:00
b54333d56b fix nodeboxes of double- and offset pane 2020-09-11 21:19:50 +02:00
6492d311c8 fix "walk-through" glass panes (wrong nodebox) 2020-07-22 20:23:54 +02:00
03d097abf8 add pane variants of the octagon glass nodes (single, double and offset) (#41)
* add pane variants of the octagon glass nodes (single, double and offset)
* fix some indent issues
* added dark glass pane

Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
2020-07-14 07:37:51 +02:00
3 changed files with 5 additions and 5 deletions

View File

@ -4,6 +4,7 @@
![](https://github.com/D00Med/scifi_nodes/workflows/luacheck/badge.svg)
![](https://github.com/D00Med/scifi_nodes/workflows/integration-test/badge.svg)
[![ContentDB](https://content.minetest.net/packages/D00Med/scifi_nodes/shields/downloads/)](https://content.minetest.net/packages/D00Med/scifi_nodes/)
Minetest mod that adds scifi themed blocks, doors, materials, plants and other assets.

View File

@ -1680,7 +1680,7 @@ minetest.register_craft({
minetest.register_craft({
output = 'scifi_nodes:stripes2top 3',
recipe = {
{"scifi_nodes:black","scifi_noedes:black","scifi_nodes:black"},
{"scifi_nodes:black","scifi_nodes:black","scifi_nodes:black"},
{"default:silver_sand","default:silver_sand","default:silver_sand"}
}
})
@ -1692,4 +1692,3 @@ minetest.register_craft({
{"scifi_nodes:stripes"}
}
})

View File

@ -19,7 +19,7 @@ local function register(basename, description, texture)
is_ground_content = false,
node_box = {
type = "fixed",
fixed = {{-0.5, -0.5, 0, 0.5, 0.5, 0}},
fixed = {{-0.5, -0.5, -0.03125, 0.5, 0.5, 0.03125}},
},
selection_box = {
type = "fixed",
@ -44,7 +44,7 @@ local function register(basename, description, texture)
is_ground_content = false,
node_box = {
type = "fixed",
fixed = {{-0.5, -0.5, 0, 0.5, 1.5, 0}},
fixed = {{-0.5, -0.5, -0.03125, 0.5, 1.5, 0.03125}},
},
selection_box = {
type = "fixed",
@ -69,7 +69,7 @@ local function register(basename, description, texture)
is_ground_content = false,
node_box = {
type = "fixed",
fixed = {{-0.5, -0.5, 1, 0.5, 0.5, 1}},
fixed = {{-0.5, -0.5, 0.96875, 0.5, 0.5, 1.03125}},
},
selection_box = {
type = "fixed",