Fix buffer parameter not working in LuaPerlinNoiseMap::l_getMapSlice()

This commit is contained in:
Pedro Gimeno 2018-01-08 21:32:15 +01:00 committed by rubenwardy
parent 2992b774fe
commit 63f4ee21b0
1 changed files with 1 additions and 1 deletions

View File

@ -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);