fix: update object id paths for new server

This commit is contained in:
DecDuck
2025-05-10 15:25:40 +10:00
parent fed3e08dce
commit 65561abdab
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);
}
}