Skip to content

Commit

Permalink
meow better
Browse files Browse the repository at this point in the history
  • Loading branch information
yofukashino committed Apr 26, 2024
1 parent f155e7a commit 1019eec
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/requiredModules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Modules.loadModules = async (): Promise<void> => {
);
Modules.KeybindUtils ??= await webpack.waitForProps<Types.KeybindUtils>("toCombo");

Modules.GatewayConnection ??= await webpack.waitForProps("Opcode");
Modules.GatewayConnection ??= await webpack.waitForProps<Types.GatewayConnection>("Opcode");

Modules.CenterControlTray ??= await webpack.waitForProps<Types.CenterControlTray>("GoLiveButton");
Modules.CenterControlButton ??= await webpack
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 1019eec

Please sign in to comment.