Last join fixes

This commit is contained in:
Natsumi
2024-07-22 21:35:42 +12:00
parent a7a4a819f5
commit 14e13c9298
2 changed files with 27 additions and 17 deletions

View File

@@ -1112,7 +1112,8 @@ speechSynthesis.getVoices();
'</el-tooltip>' +
'</span>',
props: {
location: String
location: String,
currentlocation: String
},
data() {
return {
@@ -1125,7 +1126,10 @@ speechSynthesis.getVoices();
}
},
watch: {
locationobject() {
location() {
this.parse();
},
currentlocation() {
this.parse();
}
},
@@ -10930,7 +10934,10 @@ speechSynthesis.getVoices();
}
break;
case 'location':
this.addInstanceJoinHistory(this.lastLocation, gameLog.dt);
this.addInstanceJoinHistory(
this.lastLocation.location,
gameLog.dt
);
var worldName = this.replaceBioSymbols(gameLog.worldName);
if (this.isGameRunning) {
this.lastLocationReset(gameLog.dt);
@@ -19542,7 +19549,10 @@ speechSynthesis.getVoices();
D.isQuest = false;
D.isIos = false;
D.hasImposter = false;
D.isFavorite = API.cachedFavoritesByObjectId.has(avatarId) || (this.isLocalUserVrcplusSupporter() && this.localAvatarFavoritesList.includes(avatarId));
D.isFavorite =
API.cachedFavoritesByObjectId.has(avatarId) ||
(this.isLocalUserVrcplusSupporter() &&
this.localAvatarFavoritesList.includes(avatarId));
D.isBlocked = API.cachedAvatarModerations.has(avatarId);
this.ignoreAvatarMemoSave = true;
D.memo = '';