From 059fe1ef33ff2ebbe4ab3b02bd5f3a23f138bd0b Mon Sep 17 00:00:00 2001 From: kazu0617 Date: Thu, 3 Dec 2020 21:25:50 +0900 Subject: [PATCH] expands avatar favorites from 16 to 25x4 WIP: check the tag and show how many avatars can check in client (think depends paid account or not) vrchat icon (won't be merge in this branch) --- html/src/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/src/app.js b/html/src/app.js index 1b1a9d79..b6dcdaac 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -2613,14 +2613,14 @@ import gameLogService from './service/gamelog.js' } // 16 = ['avatars1'] x 16 this.favoriteAvatarGroups = []; - for (var i = 0; i < 1; ++i) { + for (var i = 0; i < 4; ++i) { this.favoriteAvatarGroups.push({ assign: false, key: `avatar:avatars${i + 1}`, type: 'avatar', name: `avatars${i + 1}`, displayName: `Group ${i + 1}`, - capacity: 16, + capacity: 25, count: 0 }); }