Skip to content
This repository has been archived by the owner on Jun 16, 2024. It is now read-only.

Commit

Permalink
add armcord check
Browse files Browse the repository at this point in the history
  • Loading branch information
smartfrigde committed Jul 26, 2023
1 parent 2c51446 commit cb78156
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import { log } from "./lib";
import { patchScreenshareQuality } from "./patches/screenshareQuality";
import {inject} from "./patches/desktopKeybinds"
log("Loading...")
window.ACHelper = {
patchScreenshareQuality: patchScreenshareQuality
}
try {
log("Loading screenshare quality patch!")
//inject()
patchScreenshareQuality(60, 720)
} catch (e) {
console.error(e)
if (window.armcord) {
log("Loading...")
window.ACHelper = {
patchScreenshareQuality: patchScreenshareQuality
}
try {
log("Loading screenshare quality patch!")
//inject()
patchScreenshareQuality(60, 720)
} catch (e) {
console.error(e)
}
}

0 comments on commit cb78156

Please sign in to comment.