diff --git a/manifest.json b/manifest.json index 80c385a..408ac15 100644 --- a/manifest.json +++ b/manifest.json @@ -5,11 +5,11 @@ "image": "https://i.imgur.com/pDJorfP.gif", "source": "https://github.com/YofukashiNo/FakeDeafen", "author": { - "name": "Ahlawat", + "name": "Nanakusa", "discordID": "1121961711080050780", "github": "YofukashiNo" }, - "version": "1.1.4", + "version": "1.1.5", "updater": { "type": "github", "id": "YofukashiNo/FakeDeafen" diff --git a/package.json b/package.json index bcbc143..84fc186 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fake-deafen", - "version": "1.1.4", + "version": "1.1.5", "description": "Fake your audio status, to make it look like you are muted or deafened from other's perspective when you're not.", "engines": { "node": ">=14.0.0" @@ -19,7 +19,7 @@ "lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix" }, "keywords": [], - "author": "Ahlawat", + "author": "Nanakusa", "license": "MIT", "devDependencies": { "@types/node": "^18.18.13", diff --git a/src/lib/requiredModules.ts b/src/lib/requiredModules.ts index c74dfa2..535a740 100644 --- a/src/lib/requiredModules.ts +++ b/src/lib/requiredModules.ts @@ -18,7 +18,7 @@ Modules.loadModules = async (): Promise => { ); Modules.KeybindUtils ??= await webpack.waitForProps("toCombo"); - Modules.GatewayConnection ??= await webpack.waitForProps("Opcode"); + Modules.GatewayConnection ??= await webpack.waitForProps("Opcode"); Modules.CenterControlTray ??= await webpack.waitForProps("GoLiveButton"); Modules.CenterControlButton ??= await webpack diff --git a/src/types.ts b/src/types.ts index 6cd7f05..612af19 100644 --- a/src/types.ts +++ b/src/types.ts @@ -308,7 +308,7 @@ export namespace Types { VOICE_STATE_UPDATE = 4, } export interface GatewayConnection { - OpCode: typeof OpCode; + Opcode: typeof OpCode; default: DefaultTypes.AnyFunction; } export interface Modules {