fix launcher not showing gems (#7015)
Signed-off-by: byrcolin <byrcolin@amazon.com>
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user