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