fix launcher not showing gems (#7015)

Signed-off-by: byrcolin <byrcolin@amazon.com>
This commit is contained in:
AMZN-byrcolin
2022-01-19 17:09:40 -08:00
committed by GitHub
parent 2b43ad8029
commit 63d755b8f1
20 changed files with 21 additions and 21 deletions
@@ -408,7 +408,7 @@ namespace O3DE::ProjectManager
}
// check if engine path is registered
auto allEngines = m_manifest.attr("get_engines")();
auto allEngines = m_manifest.attr("get_manifest_engines")();
if (pybind11::isinstance<pybind11::list>(allEngines))
{
const AZ::IO::FixedMaxPath enginePathFixed(Py_To_String(enginePath));
@@ -891,7 +891,7 @@ namespace O3DE::ProjectManager
bool result = ExecuteWithLock([&] {
// external projects
for (auto path : m_manifest.attr("get_projects")())
for (auto path : m_manifest.attr("get_manifest_projects")())
{
projects.push_back(ProjectInfoFromPath(path));
}