Skip to content

Commit

Permalink
Marram grass: Fix noise flags to make 2D noise 'eased' (#2493)
Browse files Browse the repository at this point in the history
Increase noise resolution from 4 to 2 nodes for a higher quality
distribution.
Retune noise parameters to compensate for using eased noise.
  • Loading branch information
paramat committed Sep 21, 2019
1 parent b31795d commit 86a55d3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mods/default/mapgen.lua
Expand Up @@ -2348,13 +2348,13 @@ function default.register_decorations()
place_on = {"default:sand"},
sidelen = 4,
noise_params = {
offset = -0.4,
scale = 3.0,
offset = -0.7,
scale = 4.0,
spread = {x = 16, y = 16, z = 16},
seed = 513337,
octaves = 1,
persist = 0.5,
flags = "absvalue"
persist = 0.0,
flags = "absvalue, eased"
},
biomes = {"coniferous_forest_dunes", "grassland_dunes"},
y_max = 6,
Expand Down

0 comments on commit 86a55d3

Please sign in to comment.