summaryrefslogtreecommitdiff
path: root/technic_worldgen/nodes.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2014-07-30 15:36:27 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2014-07-30 15:36:27 -0400
commit88bdac62e3f36c1125c82b44e2bc6fd718e05322 (patch)
treeebccbef615c51104a6cbca2d3ab957a29445a4ae /technic_worldgen/nodes.lua
parent12d0c6522bbca906910aae0321cbaa7eb48db8c2 (diff)
parent60bc80692ba51ad0a7f2391803ee454b18cb7174 (diff)
Merge remote-tracking branch 'zefram/zefram/centrifuge'
Diffstat (limited to 'technic_worldgen/nodes.lua')
-rw-r--r--technic_worldgen/nodes.lua4
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()
})