mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 14:53:45 +01:00
Fix erroneous lua_pop parameter
This commit is contained in:
parent
f0ae2da89e
commit
db25f75337
@ -475,9 +475,11 @@ bool ModApiMapgen::regDecoSchematic(lua_State *L,
|
||||
lua_pop(L, 1);
|
||||
|
||||
lua_getfield(L, index, "schematic");
|
||||
if (!read_schematic(L, -1, deco, getServer(L)))
|
||||
if (!read_schematic(L, -1, deco, getServer(L))) {
|
||||
lua_pop(L, 1);
|
||||
return false;
|
||||
lua_pop(L, -1);
|
||||
}
|
||||
lua_pop(L, 1);
|
||||
|
||||
if (!deco->filename.empty() &&
|
||||
!deco->loadSchematicFile(resolver, replace_names)) {
|
||||
|
Loading…
Reference in New Issue
Block a user