mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
OnPlayerJoining fixes
This commit is contained in:
@@ -3693,24 +3693,11 @@ speechSynthesis.getVoices();
|
|||||||
joining = false;
|
joining = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if ((gameLogItem.created_at < bias) ||
|
if ((gameLogItem.type === 'Location') ||
|
||||||
(gameLogItem.type === 'Location')) {
|
(gameLogItem.type === 'OnPlayerLeft') && (gameLogItem.data === ctx.displayName)) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (joining) {
|
|
||||||
for (var i = feedTable.length - 1; i > -1; i--) {
|
|
||||||
var feedItem = feedTable[i];
|
|
||||||
if (((feedItem.type === 'Friend') || ((feedItem.type === 'Status') && (feedItem.status[0].status === 'active'))) &&
|
|
||||||
(feedItem.displayName === ctx.displayName)) {
|
|
||||||
joining = false;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (feedItem.created_at < bias) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (joining) {
|
if (joining) {
|
||||||
var onPlayerJoining = {
|
var onPlayerJoining = {
|
||||||
...ctx,
|
...ctx,
|
||||||
@@ -6675,7 +6662,7 @@ speechSynthesis.getVoices();
|
|||||||
sharedFeedFilters.noty.Location = 'Off';
|
sharedFeedFilters.noty.Location = 'Off';
|
||||||
sharedFeedFilters.noty.OnPlayerJoined = 'VIP';
|
sharedFeedFilters.noty.OnPlayerJoined = 'VIP';
|
||||||
sharedFeedFilters.noty.OnPlayerLeft = 'VIP';
|
sharedFeedFilters.noty.OnPlayerLeft = 'VIP';
|
||||||
sharedFeedFilters.noty.OnPlayerJoining = 'VIP';
|
sharedFeedFilters.noty.OnPlayerJoining = 'Off';
|
||||||
sharedFeedFilters.noty.Online = 'VIP';
|
sharedFeedFilters.noty.Online = 'VIP';
|
||||||
sharedFeedFilters.noty.Offline = 'VIP';
|
sharedFeedFilters.noty.Offline = 'VIP';
|
||||||
sharedFeedFilters.noty.GPS = 'Off';
|
sharedFeedFilters.noty.GPS = 'Off';
|
||||||
|
|||||||
Reference in New Issue
Block a user