1.4.5 finalize and release

This commit is contained in:
sinaioutlander
2020-08-30 23:29:37 +10:00
parent fd20a1120b
commit 0fd382c1f6
4 changed files with 10 additions and 8 deletions

View File

@ -115,7 +115,14 @@ namespace Explorer
if (m_object is Il2CppSystem.Object ilObject)
{
var iltype = ilObject.GetIl2CppType();
return Type.GetType(iltype.AssemblyQualifiedName);
if (Type.GetType(iltype.AssemblyQualifiedName) is Type type)
{
return type;
}
else
{
return ilObject.GetType();
}
}
else
{