summaryrefslogtreecommitdiff
path: root/technic_worldgen
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-02-02 21:36:23 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-02-02 21:36:23 -0500
commiteba6f42678dbdb4837a30908b0627bee6f35440a (patch)
tree7bafe1aaa495c1a1fb4e415ec3167739ef9a6cd2 /technic_worldgen
parentc699d3082337bcec6cdf043fa0aa185ae9e0d847 (diff)
downloaddreambuilder_modpack-eba6f42678dbdb4837a30908b0627bee6f35440a.tar
dreambuilder_modpack-eba6f42678dbdb4837a30908b0627bee6f35440a.tar.gz
dreambuilder_modpack-eba6f42678dbdb4837a30908b0627bee6f35440a.tar.bz2
dreambuilder_modpack-eba6f42678dbdb4837a30908b0627bee6f35440a.tar.xz
dreambuilder_modpack-eba6f42678dbdb4837a30908b0627bee6f35440a.zip
update moreblocks, technic, roads, worldedit
Diffstat (limited to 'technic_worldgen')
-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 a4fe2dd..f3a88e4 100644
--- a/technic_worldgen/nodes.lua
+++ b/technic_worldgen/nodes.lua
@@ -5,7 +5,7 @@ minetest.register_node( ":technic:mineral_uranium", {
description = S("Uranium Ore"),
tiles = { "default_stone.png^technic_mineral_uranium.png" },
is_ground_content = true,
- groups = {cracky=3, radioactive=1000},
+ groups = {cracky=3, radioactive=1},
sounds = default.node_sound_stone_defaults(),
drop = "technic:uranium_lump",
})
@@ -74,7 +74,7 @@ minetest.register_node(":technic:uranium_block", {
description = S("Uranium Block"),
tiles = { "technic_uranium_block.png" },
is_ground_content = true,
- groups = {uranium_block=1, cracky=1, level=2, radioactive=3000},
+ groups = {uranium_block=1, cracky=1, level=2, radioactive=2},
sounds = default.node_sound_stone_defaults()
})