mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2024-12-22 16:10:18 +01:00
register white octagon glass only if unified dyes available
This commit is contained in:
parent
5102ad7a39
commit
211dcff770
49
nodes.lua
49
nodes.lua
@ -1,3 +1,5 @@
|
|||||||
|
local has_unifieddyes_mod = minetest.get_modpath("unifieddyes")
|
||||||
|
local has_moreblocks_mod = minetest.get_modpath("moreblocks")
|
||||||
|
|
||||||
--nodes
|
--nodes
|
||||||
|
|
||||||
@ -402,27 +404,29 @@ minetest.register_node("scifi_nodes:octppl", {
|
|||||||
sounds = scifi_nodes.node_sound_glass_defaults(),
|
sounds = scifi_nodes.node_sound_glass_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("scifi_nodes:octwht", {
|
if has_unifieddyes_mod then
|
||||||
description = "Octagon Glass",
|
minetest.register_node("scifi_nodes:octwht", {
|
||||||
sunlight_propagates = false,
|
description = "Octagon Glass",
|
||||||
drawtype = "glasslike",
|
sunlight_propagates = false,
|
||||||
tiles = {
|
drawtype = "glasslike",
|
||||||
"scifi_nodes_octwht.png",
|
tiles = {
|
||||||
},
|
"scifi_nodes_octwht.png",
|
||||||
palette = "unifieddyes_palette_extended.png",
|
},
|
||||||
paramtype = "light",
|
palette = "unifieddyes_palette_extended.png",
|
||||||
paramtype2 = "color",
|
paramtype = "light",
|
||||||
use_texture_alpha = "blend",
|
paramtype2 = "color",
|
||||||
light_source = 10,
|
use_texture_alpha = "blend",
|
||||||
groups = {
|
light_source = 10,
|
||||||
cracky = 2,
|
groups = {
|
||||||
dig_generic = 3,
|
cracky = 2,
|
||||||
ud_param2_colorable = 1
|
dig_generic = 3,
|
||||||
},
|
ud_param2_colorable = 1
|
||||||
sounds = scifi_nodes.node_sound_glass_defaults(),
|
},
|
||||||
on_construct = unifieddyes.on_construct,
|
sounds = scifi_nodes.node_sound_glass_defaults(),
|
||||||
on_dig = unifieddyes.on_dig
|
on_construct = unifieddyes.on_construct,
|
||||||
})
|
on_dig = unifieddyes.on_dig
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_node("scifi_nodes:tower", {
|
minetest.register_node("scifi_nodes:tower", {
|
||||||
description = "Wind tower",
|
description = "Wind tower",
|
||||||
@ -541,9 +545,6 @@ local f = assert(io.open(minetest.get_modpath("scifi_nodes") .. "/nodes.json", "
|
|||||||
local nodes = assert(minetest.parse_json(f:read("*all")))
|
local nodes = assert(minetest.parse_json(f:read("*all")))
|
||||||
f:close()
|
f:close()
|
||||||
|
|
||||||
local has_unifieddyes_mod = minetest.get_modpath("unifieddyes")
|
|
||||||
local has_moreblocks_mod = minetest.get_modpath("moreblocks")
|
|
||||||
|
|
||||||
-- register all nodes
|
-- register all nodes
|
||||||
for name, def in pairs(nodes) do
|
for name, def in pairs(nodes) do
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user