Skip to content

Commit

Permalink
Default/mapgen: Simplify iron ore registrations
Browse files Browse the repository at this point in the history
Preserve overlapping registrations of large and small clusters
below y = -64 but now extend the small clusters up to y = 0 (the
previous highest iron ore level) in a similar to way to coal
  • Loading branch information
paramat committed Jul 5, 2016
1 parent d476d01 commit d42f77c
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions mods/default/mapgen.lua
Expand Up @@ -182,28 +182,6 @@ function default.register_ores()
y_max = 31000,
})

minetest.register_ore({
ore_type = "scatter",
ore = "default:stone_with_iron",
wherein = "default:stone",
clust_scarcity = 12 * 12 * 12,
clust_num_ores = 3,
clust_size = 2,
y_min = -15,
y_max = 0,
})

minetest.register_ore({
ore_type = "scatter",
ore = "default:stone_with_iron",
wherein = "default:stone",
clust_scarcity = 9 * 9 * 9,
clust_num_ores = 5,
clust_size = 3,
y_min = -63,
y_max = -16,
})

minetest.register_ore({
ore_type = "scatter",
ore = "default:stone_with_iron",
Expand All @@ -212,7 +190,7 @@ function default.register_ores()
clust_num_ores = 5,
clust_size = 3,
y_min = -31000,
y_max = -64,
y_max = 0,
})

minetest.register_ore({
Expand Down

0 comments on commit d42f77c

Please sign in to comment.