Fix variable declaration

master
random-geek 2020-12-20 16:29:04 -08:00 committed by GitHub
parent cee4c0366d
commit 69b8d1e2a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ end
function auroras.get_local_strength(pos)
-- No auroras underground!
heightStrength = auroras.clamp(
local heightStrength = auroras.clamp(
(pos.y - auroras.HEIGHT_MIN) / auroras.HEIGHT_TRANSITION, 0.0, 1.0)
-- Avoid getting biome data if we don't have to.