From 60f8225b96cbdce8bd5f8a60d805da39ac8a523f Mon Sep 17 00:00:00 2001 From: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Date: Fri, 17 May 2024 04:51:59 -0300 Subject: [PATCH] chore: Fix non standard plugin names --- src/plugins/partyMode/index.ts | 5 +++-- .../{ReplaceGoogleSearch => replaceGoogleSearch}/index.tsx | 0 2 files changed, 3 insertions(+), 2 deletions(-) rename src/plugins/{ReplaceGoogleSearch => replaceGoogleSearch}/index.tsx (100%) diff --git a/src/plugins/partyMode/index.ts b/src/plugins/partyMode/index.ts index 06e8719..56c19c0 100644 --- a/src/plugins/partyMode/index.ts +++ b/src/plugins/partyMode/index.ts @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -import { definePluginSettings } from "@api/Settings"; +import { definePluginSettings, migratePluginSettings } from "@api/Settings"; import { Devs } from "@utils/constants"; import definePlugin, { OptionType } from "@utils/types"; import { FluxDispatcher } from "@webpack/common"; @@ -41,8 +41,9 @@ const settings = definePluginSettings({ }, }); +migratePluginSettings("PartyMode", "Party mode 🎉"); export default definePlugin({ - name: "Party mode 🎉", + name: "PartyMode", description: "Allows you to use party mode cause the party never ends ✨", authors: [Devs.UwUDev], settings, diff --git a/src/plugins/ReplaceGoogleSearch/index.tsx b/src/plugins/replaceGoogleSearch/index.tsx similarity index 100% rename from src/plugins/ReplaceGoogleSearch/index.tsx rename to src/plugins/replaceGoogleSearch/index.tsx