summaryrefslogtreecommitdiff
path: root/src/script/common
diff options
context:
space:
mode:
authorSmallJoker <mk939@ymail.com>2014-11-12 21:11:40 +0100
committerCraig Robbins <kde.psych@gmail.com>2014-11-13 23:06:38 +1000
commit874109c5201c3deed49bc9eb98352e816c271d50 (patch)
treeb4cf37950677c6d399f292fc5704938f60364c6a /src/script/common
parentb57478b93bb1f3fdcd16ffa2d67f2bd37cdbc1c3 (diff)
downloadminetest-874109c5201c3deed49bc9eb98352e816c271d50.tar.gz
minetest-874109c5201c3deed49bc9eb98352e816c271d50.tar.bz2
minetest-874109c5201c3deed49bc9eb98352e816c271d50.zip
Add option 'eased' to NoiseParams
Signed-off-by: Craig Robbins <kde.psych@gmail.com>
Diffstat (limited to 'src/script/common')
-rw-r--r--src/script/common/c_content.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/script/common/c_content.cpp b/src/script/common/c_content.cpp
index 0e1e608c4..1972c40e0 100644
--- a/src/script/common/c_content.cpp
+++ b/src/script/common/c_content.cpp
@@ -1000,6 +1000,7 @@ bool read_noiseparams_nc(lua_State *L, int index, NoiseParams *np)
np->persist = getfloatfield_default(L, index, "persist", 0.0);
np->seed = getintfield_default(L, index, "seed", 0);
np->octaves = getintfield_default(L, index, "octaves", 0);
+ np->eased = getboolfield_default(L, index, "eased", false);
lua_getfield(L, index, "spread");
np->spread = read_v3f(L, -1);