mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2025-12-29 10:55:26 +01:00
bypass dependency indirection for df_primordial_items
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user