summaryrefslogtreecommitdiff
path: root/server/worldgen.lua
diff options
context:
space:
mode:
Diffstat (limited to 'server/worldgen.lua')
-rw-r--r--server/worldgen.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/worldgen.lua b/server/worldgen.lua
index 3f318d1..80fe392 100644
--- a/server/worldgen.lua
+++ b/server/worldgen.lua
@@ -4,7 +4,7 @@ local chunk = require"common.chunk"
local ChunkS = require"chunk".ChunkS
local CHUNK_SIZE = require"common.constants".CHUNK_SIZE
-local function p(amp,scale,seed)
+local function P(amp,scale,seed)
return {
scale=scale,
amp=amp,
@@ -13,9 +13,9 @@ local function p(amp,scale,seed)
end
-- whether there is a tile there or not
-local surface_ng = noise.NoiseAgg:make{p(1,20,1),p(0.5,15,2)}
+local surface_ng = noise.NoiseAgg:make{P(1,20,1),P(0.5,15,2)}
-- if there is a tile there, what color should it be
-local color_ng = noise.NoiseAgg:make{p(1,20,3),p(0.5,15,4)}
+local color_ng = noise.NoiseAgg:make{P(1,20,3),P(0.5,15,4)}
local function gen_chunk(chpos)