mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix buffer parameter not working in LuaPerlinNoiseMap::l_getMapSlice()
This commit is contained in:
parent
b2099d4277
commit
6b5e2618fb
1 changed files with 1 additions and 1 deletions
|
@ -316,7 +316,7 @@ int LuaPerlinNoiseMap::l_getMapSlice(lua_State *L)
|
||||||
Noise *n = o->noise;
|
Noise *n = o->noise;
|
||||||
|
|
||||||
if (use_buffer)
|
if (use_buffer)
|
||||||
lua_pushvalue(L, 3);
|
lua_pushvalue(L, 4);
|
||||||
else
|
else
|
||||||
lua_newtable(L);
|
lua_newtable(L);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue