Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Default/mapgen: Correct spelling of 'noise threshhold' in 'register ore'
  • Loading branch information
paramat committed Dec 19, 2015
1 parent a1b8b68 commit c3a1545
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mods/default/mapgen.lua
Expand Up @@ -57,7 +57,7 @@ function default.register_ores()
clust_size = 5,
y_min = -15,
y_max = 0,
noise_threshhold = 0.0,
noise_threshold = 0.0,
noise_params = {
offset = 0.5,
scale = 0.2,
Expand All @@ -78,7 +78,7 @@ function default.register_ores()
clust_size = 5,
y_min = -31,
y_max = 4,
noise_threshhold = 0.0,
noise_threshold = 0.0,
noise_params = {
offset = 0.5,
scale = 0.2,
Expand All @@ -99,7 +99,7 @@ function default.register_ores()
clust_size = 5,
y_min = -31,
y_max = 31000,
noise_threshhold = 0.0,
noise_threshold = 0.0,
noise_params = {
offset = 0.5,
scale = 0.2,
Expand All @@ -120,7 +120,7 @@ function default.register_ores()
clust_size = 5,
y_min = -31000,
y_max = 31000,
noise_threshhold = 0.0,
noise_threshold = 0.0,
noise_params = {
offset = 0.5,
scale = 0.2,
Expand Down

0 comments on commit c3a1545

Please sign in to comment.