diff options
Diffstat (limited to 'technic_worldgen/nodes.lua')
-rw-r--r-- | technic_worldgen/nodes.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/technic_worldgen/nodes.lua b/technic_worldgen/nodes.lua index 3b0ad99..e4774ce 100644 --- a/technic_worldgen/nodes.lua +++ b/technic_worldgen/nodes.lua @@ -7,7 +7,7 @@ minetest.register_node( ":technic:mineral_uranium", { is_ground_content = true, groups = {cracky=3, radioactive=1}, sounds = default.node_sound_stone_defaults(), - drop = 'craft "technic:uranium" 1', + drop = 'craft "technic:uranium_lump" 1', }) minetest.register_node( ":technic:mineral_chromium", { @@ -56,7 +56,7 @@ minetest.register_node(":technic:uranium_block", { description = S("Uranium Block"), tiles = { "technic_uranium_block.png" }, is_ground_content = true, - groups = {cracky=1, level=2, radioactive=3}, + groups = {uranium_block=1, cracky=1, level=2, radioactive=3}, sounds = default.node_sound_stone_defaults() }) |