switch to guid not platformid

This commit is contained in:
Luna 2025-08-22 20:44:56 +02:00
parent 09b1bd2520
commit df72b7d8c6

View file

@ -848,6 +848,7 @@
}
console.log(`Applied ${results.length} modifiers successfully`);
console.log("Modifier apply res", results);
return results;
} catch (error) {
@ -859,7 +860,7 @@
async function handleModifyGameplayForPlayer(player: User) {
editingPlayerName = player.name;
editingPlayerPfp = player.discordInfo?.avatarUrl || "";
editingPlayerPlatformId = player.platformId;
editingPlayerPlatformId = player.guid;
isModifyGameplayPopupVisible = true;
}