From: Pedro Gimeno Date: Mon, 8 Jan 2018 20:32:15 +0000 (+0100) Subject: Fix buffer parameter not working in LuaPerlinNoiseMap::l_getMapSlice() X-Git-Tag: 5.0.0~640 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=63f4ee21b05266f926ed883ba86f3411b1499933;p=oweals%2Fminetest.git Fix buffer parameter not working in LuaPerlinNoiseMap::l_getMapSlice() --- diff --git a/src/script/lua_api/l_noise.cpp b/src/script/lua_api/l_noise.cpp index 7e76001c1..85e908356 100644 --- a/src/script/lua_api/l_noise.cpp +++ b/src/script/lua_api/l_noise.cpp @@ -311,7 +311,7 @@ int LuaPerlinNoiseMap::l_get_map_slice(lua_State *L) Noise *n = o->noise; if (use_buffer) - lua_pushvalue(L, 3); + lua_pushvalue(L, 4); else lua_newtable(L);