From 38e680bae1c1f505e162df03e782c2d71df97dac Mon Sep 17 00:00:00 2001 From: Valansch Date: Tue, 2 Oct 2018 23:49:39 +0200 Subject: [PATCH] fixed typo --- map_gen/ores/tiny_ores.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map_gen/ores/tiny_ores.lua b/map_gen/ores/tiny_ores.lua index 161166d6..413fc8f8 100644 --- a/map_gen/ores/tiny_ores.lua +++ b/map_gen/ores/tiny_ores.lua @@ -21,7 +21,7 @@ Global.register_init( local function value(base, mult, pow) return function(x, y) local d_sq = x * x + y * y - return base + mult * d ^ (pow / 2) + return base + mult * d_sq ^ (pow / 2) end end