summaryrefslogtreecommitdiff
path: root/technic_worldgen
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2014-08-20 19:14:03 +0100
committerZefram <zefram@fysh.org>2014-08-20 19:14:03 +0100
commit7a9d2ffe5f93354681be85a60d1f28a9273f0e0d (patch)
tree9f41aee4f26f8d8b45883ef59fcbe0bb7d368ca5 /technic_worldgen
parent7d610b7c80487cd7a6e66f55c9c3b1190e5dfc7f (diff)
Finer gradations of radioactivity
Make the "radioactive" group value be the safe distance in millimeters rather than meters, to allow for intermediate values. Use such intermediate values for the uranium blocks, using the existing formula with this finer quantisation. All other radioactive nodes retain their existing radioactivity exactly.
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 e4774ce..c50385a 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=1},
+ groups = {cracky=3, radioactive=1000},
sounds = default.node_sound_stone_defaults(),
drop = 'craft "technic:uranium_lump" 1',
})
@@ -56,7 +56,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=3},
+ groups = {uranium_block=1, cracky=1, level=2, radioactive=3000},
sounds = default.node_sound_stone_defaults()
})