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)
This commit is contained in:
kazu0617
2020-12-03 21:25:50 +09:00
committed by pypy
parent 3319e54e50
commit 059fe1ef33

View File

@@ -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
});
}