From 3214b7b50467b0b0b2bde08b8343b83b03070b26 Mon Sep 17 00:00:00 2001 From: Commonly <51011212+commonly-ts@users.noreply.github.com> Date: Fri, 21 Nov 2025 01:10:56 +1300 Subject: [PATCH] Update PATCH request body to include gameJoinRestriction Oversight when I originally wrote this --- src/resources/universes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/universes.ts b/src/resources/universes.ts index dd67e52..c8e7a0c 100644 --- a/src/resources/universes.ts +++ b/src/resources/universes.ts @@ -195,7 +195,7 @@ export class Universes { `/cloud/v2/universes/${universeId}/user-restrictions/${userRestrictionId}`, { method: "PATCH", - body: JSON.stringify(body), + body: JSON.stringify({ gameJoinRestriction: body }), searchParams, }, );