Skip to content

Commit

Permalink
Add Call Idling
Browse files Browse the repository at this point in the history
  • Loading branch information
Cynosphere committed Jan 5, 2025
1 parent 18aa8e2 commit 181766d
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/callIdling/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Patch } from "@moonlight-mod/types";

export const patches: Patch[] = [
{
find: "CallIdleManager:",
replace: {
match: /CallIdleManager:{actions:\[".+?},/,
replacement: ""
}
}
];
18 changes: 18 additions & 0 deletions src/callIdling/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://moonlight-mod.github.io/manifest.schema.json",
"id": "callIdling",
"version": "1.0.0",
"meta": {
"name": "Call Idling",
"tagline": "Disables auto-disconnect in empty calls",
"authors": [
"Cynosphere"
],
"tags": [
"voice",
"qol"
],
"source": "https://github.com/Cynosphere/moonlight-extensions"
},
"apiLevel": 2
}

0 comments on commit 181766d

Please sign in to comment.