This commit is contained in:
Natsumi
2021-11-23 12:31:20 +13:00
parent ce068e558c
commit 0ee166dbfd
3 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -338,7 +338,7 @@ namespace VRCX
return true; return true;
} }
if (line.Contains("] Joining ")) if (line.Contains("] Joining ") && !line.Contains("or Creating Room: "))
{ {
var lineOffset = line.LastIndexOf("] Joining "); var lineOffset = line.LastIndexOf("] Joining ");
if (lineOffset < 0) if (lineOffset < 0)
+9 -8
View File
@@ -8210,10 +8210,9 @@ speechSynthesis.getVoices();
} }
} }
}); });
if (this.photonLobbyTimeout.length > 0 || hudTimeout.length > 0) { hudTimeout.sort(function (a, b) {
hudTimeout.sort(function (a, b) { if (a.time > b.time) {
if (a.time > b.time) { return 1;
return 1;
} }
if (a.time < b.time) { if (a.time < b.time) {
return -1; return -1;
@@ -8244,12 +8243,14 @@ speechSynthesis.getVoices();
} }
AppApi.ExecuteVrOverlayFunction( AppApi.ExecuteVrOverlayFunction(
'updateHudTimeout', 'updateHudTimeout',
JSON.stringify(filteredHudTimeout) JSON.stringify(filteredHudTimeout)
); );
} }
if (this.photonLobbyTimeout.length > 0 || hudTimeout.length > 0) {
this.photonLobbyTimeout = hudTimeout; this.photonLobbyTimeout = hudTimeout;
this.getCurrentInstanceUserList(); this.getCurrentInstanceUserList();
} else {
this.photonLobbyTimeout = hudTimeout;
} }
this.photonBotCheck(event7List); this.photonBotCheck(event7List);
}); });
-1
View File
@@ -97,7 +97,6 @@
} }
.el-table__row:hover .el-table__cell .cell { .el-table__row:hover .el-table__cell .cell {
-webkit-box-orient: unset;
-webkit-line-clamp: unset; -webkit-line-clamp: unset;
} }