minetest.get_inventory: whitespace fix

This commit is contained in:
cron 2020-11-10 03:39:27 +00:00
parent 0aa41f326c
commit cac68e9132

View File

@ -471,10 +471,10 @@ int ModApiClient::l_get_inventory(lua_State *L)
inventory_location.deSerialize(location); inventory_location.deSerialize(location);
inventory = client->getInventory(inventory_location); inventory = client->getInventory(inventory_location);
if (!inventory) { if (!inventory) {
lua_pushnil(L); lua_pushnil(L);
return 1; return 1;
} }
push_inventory(L, inventory); push_inventory(L, inventory);
} catch (SerializationError &) { } catch (SerializationError &) {