mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-15 13:55:11 -05:00
Areastore: fix "attempt to index a number value"
Before, calling get_areas_in_area for an areastore with both include_borders and include_data would result in a lua error, if there was at least one area as result: attempt to index a number value in function 'get_areas_in_area'
This commit is contained in:
parent
d493855481
commit
2035bfc3a6
@ -45,6 +45,7 @@ static void push_area(lua_State *L, const Area *a,
|
||||
{
|
||||
if (!include_borders && !include_data) {
|
||||
lua_pushboolean(L, true);
|
||||
return;
|
||||
}
|
||||
lua_newtable(L);
|
||||
if (include_borders) {
|
||||
|
Loading…
Reference in New Issue
Block a user