handling of offline:offline

This commit is contained in:
Natsumi
2024-10-24 23:18:04 +13:00
parent 49742f146c
commit 12ed7faa1a
2 changed files with 7 additions and 2 deletions

View File

@@ -772,7 +772,7 @@ speechSynthesis.getVoices();
canRequestInvite: false, canRequestInvite: false,
strict: false strict: false
}; };
if (_tag === 'offline') { if (_tag === 'offline' || _tag === 'offline:offline') {
ctx.isOffline = true; ctx.isOffline = true;
} else if (_tag === 'private') { } else if (_tag === 'private') {
ctx.isPrivate = true; ctx.isPrivate = true;
@@ -27417,6 +27417,7 @@ speechSynthesis.getVoices();
return false; return false;
} }
switch (instanceId) { switch (instanceId) {
case 'offline:offline':
case 'offline': case 'offline':
case 'private': case 'private':
case 'traveling': case 'traveling':
@@ -27497,6 +27498,10 @@ speechSynthesis.getVoices();
this.updateCurrentUserLocation(); this.updateCurrentUserLocation();
// janky gameLog support for Quest // janky gameLog support for Quest
if (this.isGameRunning) {
// with the current state of things, lets not run this if we don't need to
return;
}
var lastLocation = ''; var lastLocation = '';
for (var i = this.gameLogSessionTable.length - 1; i > -1; i--) { for (var i = this.gameLogSessionTable.length - 1; i > -1; i--) {
var item = this.gameLogSessionTable[i]; var item = this.gameLogSessionTable[i];

View File

@@ -263,7 +263,7 @@ Vue.component('marquee-text', MarqueeText);
canRequestInvite: false, canRequestInvite: false,
strict: false strict: false
}; };
if (_tag === 'offline') { if (_tag === 'offline' || _tag === 'offline:offline') {
ctx.isOffline = true; ctx.isOffline = true;
} else if (_tag === 'private') { } else if (_tag === 'private') {
ctx.isPrivate = true; ctx.isPrivate = true;