fix: update object id paths for new server

This commit is contained in:
DecDuck
2025-05-10 15:25:40 +10:00
parent 4027ec4da2
commit e83d81f734
9 changed files with 101 additions and 23 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ async function calculateGames() {
}
for (const game of rawGames.value) {
if (icons[game.id]) continue;
icons[game.id] = await useObject(game.mIconId);
icons[game.id] = await useObject(game.mIconObjectId);
}
}