mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-05 17:05:05 -05:00
Fix threshold type
Fix the type of the threshold value for mapgen.
The commit
a78dd7f2b6
"Fix spelling of noise_threshold"
has changed it to be read as int, but it can have non-integral values too.
Thanks to @kwolekr for pointing this out.
This commit is contained in:
parent
9a5a538e8d
commit
51e8c2b277
@ -951,9 +951,9 @@ int ModApiMapgen::l_register_ore(lua_State *L)
|
||||
warn_if_field_exists(L, index, "noise_threshhold",
|
||||
"Deprecated: new name is \"noise_threshold\".");
|
||||
|
||||
int nthresh;
|
||||
if (!getintfield(L, index, "noise_threshold", nthresh) &&
|
||||
!getintfield(L, index, "noise_threshhold", nthresh))
|
||||
float nthresh;
|
||||
if (!getfloatfield(L, index, "noise_threshold", nthresh) &&
|
||||
!getfloatfield(L, index, "noise_threshhold", nthresh))
|
||||
nthresh = 0;
|
||||
ore->nthresh = nthresh;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user