From 70ea0c92a836bb66c02c3ffcd8f44ba156dd3df0 Mon Sep 17 00:00:00 2001 From: Cooper Date: Thu, 5 Sep 2024 10:37:06 -0500 Subject: [PATCH] Remove Roblox as a temp thing i will test when home. --- src/plugins/extraConnectionLinks/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/extraConnectionLinks/index.ts b/src/plugins/extraConnectionLinks/index.ts index 682f49421..c7b6af17f 100644 --- a/src/plugins/extraConnectionLinks/index.ts +++ b/src/plugins/extraConnectionLinks/index.ts @@ -25,7 +25,7 @@ enum connectionTypes { * @example [connectionTypes.Roblox]: "https://www.roblox.com/users/${id}/profile", */ const uris = { // name (what shows up on connection on ui), id (an identifier thing) - [connectionTypes.Roblox]: "https://www.roblox.com/users/${id}/profile", + //[connectionTypes.Roblox]: "https://www.roblox.com/users/${id}/profile", [connectionTypes.Xbox]: "https://www.xbox.com/play/user/${name}", [connectionTypes.Epic]: "https://store.epicgames.com/u/${id}", }; @@ -35,7 +35,7 @@ const uris = { // name (what shows up on connection on ui), id (an identifier th * @example [connectionTypes.Epic]: "Epic Games", */ const serviceNames = { - [connectionTypes.Roblox]: "Roblox", + //[connectionTypes.Roblox]: "Roblox", [connectionTypes.Xbox]: "Xbox", [connectionTypes.Epic]: "Epic Games", };