switch to guid not platformid
This commit is contained in:
parent
09b1bd2520
commit
df72b7d8c6
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue