bypass dependency indirection for df_primordial_items

This commit is contained in:
FaceDeer
2022-08-08 00:27:57 -06:00
parent a416678cc5
commit d476e5b325
10 changed files with 72 additions and 102 deletions

View File

@@ -13,7 +13,7 @@ minetest.register_node("df_primordial_items:glownode", {
sunlight_propagates = true,
is_ground_content = false,
groups = {cracky = 3, oddly_breakable_by_hand = 3},
sounds = df_primordial_items.sounds.glass,
sounds = df_dependencies.sound_glass(),
light_source = minetest.LIGHT_MAX,
_mcl_blast_resistance = 0.3,
_mcl_hardness = 0.3,
@@ -27,7 +27,7 @@ minetest.register_node("df_primordial_items:glownode_stalk", {
paramtype2 = "facedir",
is_ground_content = false,
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
sounds = df_primordial_items.sounds.wood,
sounds = df_dependencies.sound_wood(),
on_place = minetest.rotate_node,
_mcl_blast_resistance = 2,
_mcl_hardness = 2,
@@ -48,7 +48,7 @@ minetest.register_node("df_primordial_items:glow_orb_hanging", {
is_ground_content = false,
walkable = false,
light_source = 6,
sounds = df_primordial_items.sounds.leaves,
sounds = df_dependencies.sound_leaves(),
use_texture_alpha = "clip",
sunlight_propagates = true,
_mcl_blast_resistance = 0.2,