From e2be554848a1d1b1919c543531c1a2e2b54d90f1 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Mon, 16 Jun 2025 20:20:26 -0400 Subject: [PATCH] FriendCloud: Fully Remove V1 --- src/equicordplugins/friendCloud/index.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/equicordplugins/friendCloud/index.ts b/src/equicordplugins/friendCloud/index.ts index 4972f6d1..b40e8787 100644 --- a/src/equicordplugins/friendCloud/index.ts +++ b/src/equicordplugins/friendCloud/index.ts @@ -64,17 +64,10 @@ export default definePlugin({ description: "Number of users to display", type: ApplicationCommandOptionType.NUMBER, required: false - }, - { - name: "algorithm", - description: "Use the old algorithm (v1) to calculate affinity", - type: ApplicationCommandOptionType.BOOLEAN, - required: false } ], execute: async (opts, cmdCtx) => { const count = findOption(opts, "count", 25); - const useV1 = findOption(opts, "algorithm", false); if (!count) return sendBotMessage(cmdCtx.channel.id, { content: "The count must be 1 or higher!" });