1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-03-03 14:53:01 +02:00

fixed typo

This commit is contained in:
Valansch 2018-10-02 23:49:39 +02:00 committed by GitHub
parent be8ab3d42f
commit 38e680bae1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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