diff --git a/html/src/app.js b/html/src/app.js index a7036cd7..38de28ea 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -23801,6 +23801,15 @@ speechSynthesis.getVoices(); case 'group': this.showGroupDialog(commandArg); break; + case 'local-favorite-world': + console.log('local-favorite-world', commandArg); + var [id, group] = commandArg.split(':'); + API.getCachedWorld({ worldId: id }).then((args1) => { + this.directAccessWorld(id); + this.addLocalWorldFavorite(id, group); + return args1; + }); + break; case 'addavatardb': this.addAvatarProvider(input.replace('addavatardb/', '')); break;