Fix ore node not defined errors

master
cheapie 2014-05-28 01:12:41 -04:00 committed by Vanessa Ezekowitz
parent b2a9a20e76
commit f1b6f22bdf
1 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ end
if technic_uranium_new_ore_gen == true then
minetest.register_ore({
ore_type = "scatter",
ore = "technic:uranium_mineral",
ore = "technic:mineral_uranium",
wherein = "default:stone",
clust_scarcity = 20*20*20,
clust_num_ores = 18,
@ -18,7 +18,7 @@ if technic_uranium_new_ore_gen == true then
minetest.register_ore({
ore_type = "scatter",
ore = "technic:uranium_mineral",
ore = "technic:mineral_uranium",
wherein = "default:stone",
clust_scarcity =30*30*30,
clust_num_ores = 40,
@ -37,4 +37,4 @@ if enable_technic_recipe == true then
{'', 'technic:uranium_block', ''},
}
})
end
end