This commit is contained in:
Natsumi
2022-08-10 18:23:23 +12:00
parent 87e3b0a923
commit ca514ead77
3 changed files with 28 additions and 22 deletions
+3 -3
View File
@@ -349,12 +349,12 @@ namespace VRCX
// 2021.09.02 00:02:12 Log - [Behaviour] Destination set: wrld_4432ea9b-729c-46e3-8eaf-846aa0a37fdd:15609~private(usr_032383a7-748c-4fb2-94e4-bcb928e5de6b)~nonce(72CC87D420C1D49AEFFBEE8824C84B2DF0E38678E840661E)
// 2021.09.02 00:49:15 Log - [Behaviour] Destination fetching: wrld_4432ea9b-729c-46e3-8eaf-846aa0a37fdd
if (line.Contains("[Behaviour] Destination fetching: "))
if (line.Contains("[Behaviour] Destination set: "))
{
var lineOffset = line.LastIndexOf("] Destination fetching: ");
var lineOffset = line.LastIndexOf("] Destination set: ");
if (lineOffset < 0)
return true;
lineOffset += 24;
lineOffset += 19;
if (lineOffset >= line.Length)
return true;