Parse OnLeftRoom

This commit is contained in:
Natsumi
2021-10-04 12:47:52 +13:00
parent 565d6c3a2e
commit 68b2ed6b17

View File

@@ -335,6 +335,20 @@ namespace VRCX
return true;
}
// 2021.10.04 11:54:16 Log - [Behaviour] OnLeftRoom
if (string.Compare(line, offset, "[Behaviour] OnLeftRoom", 0, 22, StringComparison.Ordinal) == 0)
{
AppendLog(new[]
{
fileInfo.Name,
ConvertLogTimeToISO8601(line),
"location-destination"
});
return true;
}
return false;
}