mirror of https://github.com/AxioDL/metaforce.git
CStateManager: Revert debug commit
This commit is contained in:
parent
7f6791632b
commit
d5fcb4a917
|
@ -1357,8 +1357,8 @@ std::pair<TEditorId, TUniqueId> CStateManager::LoadScriptObject(TAreaId aid, ESc
|
||||||
}
|
}
|
||||||
|
|
||||||
CEntity* ent = nullptr;
|
CEntity* ent = nullptr;
|
||||||
const CEntityInfo info(aid, std::move(conns), id);
|
|
||||||
if (loader) {
|
if (loader) {
|
||||||
|
const CEntityInfo info(aid, std::move(conns), id);
|
||||||
ent = loader(*this, in, propCount, info);
|
ent = loader(*this, in, propCount, info);
|
||||||
} else {
|
} else {
|
||||||
error = true;
|
error = true;
|
||||||
|
@ -1378,10 +1378,9 @@ std::pair<TEditorId, TUniqueId> CStateManager::LoadScriptObject(TAreaId aid, ESc
|
||||||
|
|
||||||
if (error || ent == nullptr) {
|
if (error || ent == nullptr) {
|
||||||
in.seek(startPos, athena::SeekOrigin::Begin);
|
in.seek(startPos, athena::SeekOrigin::Begin);
|
||||||
std::string name; //= HashInstanceName(in);
|
std::string name = HashInstanceName(in);
|
||||||
LogModule.report(logvisor::Error, FMT_STRING("Script load error while loading {}, name: {}"),
|
LogModule.report(logvisor::Error, FMT_STRING("Script load error while loading {}, name: {}"),
|
||||||
ScriptObjectTypeToStr(type), name);
|
ScriptObjectTypeToStr(type), name);
|
||||||
loader(*this, in, propCount, info);
|
|
||||||
return {kInvalidEditorId, kInvalidUniqueId};
|
return {kInvalidEditorId, kInvalidUniqueId};
|
||||||
} else {
|
} else {
|
||||||
LogModule.report(logvisor::Info, FMT_STRING("Loaded {} in area {}"), ent->GetName(), ent->GetAreaIdAlways());
|
LogModule.report(logvisor::Info, FMT_STRING("Loaded {} in area {}"), ent->GetName(), ent->GetAreaIdAlways());
|
||||||
|
|
Loading…
Reference in New Issue