From 345ff813054a346fad8a504a3a2e6b0b35d30e5f Mon Sep 17 00:00:00 2001 From: Xeno333 Date: Fri, 6 Jun 2025 16:58:07 -0500 Subject: [PATCH] fix typo and Warning to Important --- doc/lua_api.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/lua_api.md b/doc/lua_api.md index 0034a79ab..e38b1bd2b 100644 --- a/doc/lua_api.md +++ b/doc/lua_api.md @@ -6586,7 +6586,7 @@ Environment access * `core.get_value_noise(noiseparams)` * Return world-specific value noise. * The actual seed used is the noiseparams seed plus the world seed. - * **Warning**: Requires the mapgen enviorment to be initalized, do not use at load time. + * **Important**: Requires the mapgen environment to be initalized, do not use at load time. * `core.get_value_noise(seeddiff, octaves, persistence, spread)` * Deprecated: use `core.get_value_noise(noiseparams)` instead. * `core.get_perlin(noiseparams)` @@ -9270,7 +9270,7 @@ It can be created via `ValueNoise()` or `core.get_value_noise()`. For `core.get_value_noise()`, the actual seed used is the noiseparams seed plus the world seed, to create world-specific noise. -**Warning** These require the mapgen enviorment to be initalized, do not use at load time. +**Important** These require the mapgen environment to be initalized, do not use at load time. * `ValueNoise(noiseparams)` * `ValueNoise(seed, octaves, persistence, spread)` (deprecated) @@ -9308,7 +9308,7 @@ For each of the functions with an optional `buffer` parameter: If `buffer` is not nil, this table will be used to store the result instead of creating a new table. -**Warning** These require the mapgen enviorment to be initalized, do not use at load time. +**Important** These require the mapgen environment to be initalized, do not use at load time. ### Methods