From 68b2ed6b17f803f0842acc491f679fa76bc37f42 Mon Sep 17 00:00:00 2001 From: Natsumi Date: Mon, 4 Oct 2021 12:47:52 +1300 Subject: [PATCH] Parse OnLeftRoom --- LogWatcher.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/LogWatcher.cs b/LogWatcher.cs index db036aac..4ef6387b 100644 --- a/LogWatcher.cs +++ b/LogWatcher.cs @@ -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; }