mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-01 12:43:46 +02:00
Fixes
This commit is contained in:
@@ -8174,7 +8174,14 @@ speechSynthesis.getVoices();
|
|||||||
database.addGamelogJoinLeaveToDatabase(entry);
|
database.addGamelogJoinLeaveToDatabase(entry);
|
||||||
break;
|
break;
|
||||||
case 'portal-spawn':
|
case 'portal-spawn':
|
||||||
if (this.ipcEnabled && this.isGameRunning) {
|
var bias = Date.parse($app.lastLocation.date) + 30 * 1000;
|
||||||
|
if (
|
||||||
|
(this.ipcEnabled && this.isGameRunning) ||
|
||||||
|
!this.lastLocation.location ||
|
||||||
|
bias < Date.now()
|
||||||
|
) {
|
||||||
|
console.log('ignored portal spawn');
|
||||||
|
// 30sec wait for world portals to load
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var entry = {
|
var entry = {
|
||||||
@@ -8295,7 +8302,7 @@ speechSynthesis.getVoices();
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
case 'opvenvr-init':
|
case 'openvr-init':
|
||||||
this.isGameNoVR = false;
|
this.isGameNoVR = false;
|
||||||
configRepository.setBool('isGameNoVR', this.isGameNoVR);
|
configRepository.setBool('isGameNoVR', this.isGameNoVR);
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user