diff --git a/README.md b/README.md
index 380e341e..8f7e6a4c 100644
--- a/README.md
+++ b/README.md
@@ -50,7 +50,7 @@ An enhanced version of [Vencord](https://github.com/Vendicated/Vencord) by [Vend
- Hop On by ImLvna
- IgnoreTerms by D3SOX
- IRememberYou by zoodogood
-- Keyboard Sounds by HypedDomi
+- KeyboardSounds by HypedDomi
- KeywordNotify by camila314
- Meow by Samwich
- MessageLinkTooltip by Kyuuhachi
@@ -69,7 +69,7 @@ An enhanced version of [Vencord](https://github.com/Vendicated/Vencord) by [Vend
- ReplyPingControl by ant0n and MrDiamond
- ScreenRecorder by AutumnVN
- SearchFix by Jaxx
-- Sekai Stickers by MaiKokain
+- SekaiStickers by MaiKokain
- ServerSearch by camila314
- ShowBadgesInChat by Inbestigator and KrystalSkull
- Slap by Korbo
diff --git a/src/equicordplugins/godMode/index.ts b/src/equicordplugins/godMode/index.ts
index d81f0e29..5df51066 100644
--- a/src/equicordplugins/godMode/index.ts
+++ b/src/equicordplugins/godMode/index.ts
@@ -16,12 +16,14 @@
* along with this program. If not, see .
*/
+import { migratePluginSettings } from "@api/Settings";
import { EquicordDevs } from "@utils/constants";
import definePlugin from "@utils/types";
import { PermissionStore } from "@webpack/common";
+migratePluginSettings("GodMode", "God Mode");
export default definePlugin({
- name: "God Mode",
+ name: "GodMode",
description: "Get all permissions (client-side).",
authors: [EquicordDevs.Tolgchu],
diff --git a/src/equicordplugins/keyboardSounds/index.ts b/src/equicordplugins/keyboardSounds/index.ts
index 854423a4..d3082e7d 100644
--- a/src/equicordplugins/keyboardSounds/index.ts
+++ b/src/equicordplugins/keyboardSounds/index.ts
@@ -16,6 +16,7 @@
* along with this program. If not, see .
*/
+import { migratePluginSettings } from "@api/Settings";
import { Devs } from "@utils/constants";
import definePlugin, { OptionType } from "@utils/types";
@@ -42,8 +43,9 @@ const keydown = (e: KeyboardEvent) => {
}
};
+migratePluginSettings("KeyboardSounds", "Keyboard Sounds");
export default definePlugin({
- name: "Keyboard Sounds",
+ name: "KeyboardSounds",
description: "Adds the Opera GX Keyboard Sounds to Discord",
authors: [Devs.HypedDomi],
start: () => {
diff --git a/src/equicordplugins/sekaiStickers/index.tsx b/src/equicordplugins/sekaiStickers/index.tsx
index 352fdee7..9c0ec2a5 100644
--- a/src/equicordplugins/sekaiStickers/index.tsx
+++ b/src/equicordplugins/sekaiStickers/index.tsx
@@ -5,7 +5,7 @@
*/
import { addChatBarButton, ChatBarButton, removeChatBarButton } from "@api/ChatButtons";
-import { definePluginSettings } from "@api/Settings";
+import { definePluginSettings, migratePluginSettings } from "@api/Settings";
import { Devs } from "@utils/constants";
import { openModal } from "@utils/modal";
import definePlugin, { OptionType } from "@utils/types";
@@ -30,8 +30,9 @@ const SekaiStickerChatButton: ChatBarButton = () => {
};
let IS_FONTS_LOADED = false;
+migratePluginSettings("SekaiStickers", "Sekai Stickers");
export default definePlugin({
- name: "Sekai Stickers",
+ name: "SekaiStickers",
description: "Sekai Stickers built in discord originally from github.com/TheOriginalAyaka",
authors: [Devs.MaiKokain],
dependencies: ["ChatInputButtonAPI"],