[jasper/world/studio] Cleanup redundant keelCtx calls
Some checks failed
Build / build (push) Failing after 3m0s

This commit is contained in:
Gary Talent 2024-05-28 21:27:19 -05:00
parent 2db3d0470a
commit 580f27ac87

View File

@ -400,7 +400,7 @@ ox::Error WorldEditorImGui::handleDepUpdate(ox::StringView, ox::UUID const&uuid)
auto const depUpdated = ox::any_of(m_doc.objSets.begin(), m_doc.objSets.end(), objSetMatches)
|| ox::any_of(m_dependencies.pairs().begin(), m_dependencies.pairs().end(), depMatches);
if (depUpdated) {
oxReturnError(buildObjCache(keelCtx(m_sctx), m_doc).moveTo(m_objCache));
oxReturnError(buildObjCache(kctx, m_doc).moveTo(m_objCache));
oxReturnError(loadWorldStatic(m_objCache, m_doc).moveTo(m_worldStatic));
oxReturnError(loadObjectSets());
}