update
This commit is contained in:
@@ -25,7 +25,7 @@ export function GameLaunchProvider({
|
||||
const launchGame = useCallback((placeId: string, jobId?: string) => {
|
||||
openGameLaunchWithParams(placeId, jobId);
|
||||
|
||||
console.log("[GameLaunchProvider] Launching",{placeId, jobId});
|
||||
console.log("[GameLaunchProvider] Launching", { placeId, jobId });
|
||||
|
||||
const gameLaunchParams = {
|
||||
launchmode: "play",
|
||||
@@ -34,9 +34,12 @@ export function GameLaunchProvider({
|
||||
gameInstanceId: jobId ?? undefined
|
||||
};
|
||||
|
||||
console.log("[GameLaunchProvider] Constructed GameLaunchParams",gameLaunchParams);
|
||||
console.log(
|
||||
"[GameLaunchProvider] Constructed GameLaunchParams",
|
||||
gameLaunchParams
|
||||
);
|
||||
|
||||
const url = new URL("roblox://experiences/start")
|
||||
const url = new URL("roblox://experiences/start");
|
||||
|
||||
for (const [key, value] of Object.entries(gameLaunchParams)) {
|
||||
if (value !== undefined && value !== null) {
|
||||
|
||||
Reference in New Issue
Block a user