mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-18 13:23:28 -05:00
Fix Audio URLS
This commit is contained in:
parent
07759183a9
commit
ba7d7ae4e1
2 changed files with 6 additions and 6 deletions
|
@ -47,10 +47,10 @@ export default definePlugin({
|
|||
description: "Adds the Opera GX Keyboard Sounds to Discord",
|
||||
authors: [Devs.HypedDomi],
|
||||
start: () => {
|
||||
click1 = new Audio("https://github.com/HypedDomi/Vencord-Plugins/raw/main/Keyboard-Sounds/sounds/click1.wav");
|
||||
click2 = new Audio("https://github.com/HypedDomi/Vencord-Plugins/raw/main/Keyboard-Sounds/sounds/click2.wav");
|
||||
click3 = new Audio("https://github.com/HypedDomi/Vencord-Plugins/raw/main/Keyboard-Sounds/sounds/click3.wav");
|
||||
backspace = new Audio("https://github.com/HypedDomi/Vencord-Plugins/raw/main/Keyboard-Sounds/sounds/backspace.wav");
|
||||
click1 = new Audio("https://github.com/Equicord/Ignore/raw/main/sounds/keyboard/click1.wav");
|
||||
click2 = new Audio("https://github.com/Equicord/Ignore/raw/main/sounds/keyboard/click2.wav");
|
||||
click3 = new Audio("https://github.com/Equicord/Ignore/raw/main/sounds/keyboard/click3.wav");
|
||||
backspace = new Audio("https://github.com/Equicord/Ignore/raw/main/sounds/keyboard/backspace.wav");
|
||||
sounds = {
|
||||
click1,
|
||||
click2,
|
||||
|
|
|
@ -53,9 +53,9 @@ interface IVoiceChannelEffectSendEvent {
|
|||
|
||||
const MOYAI = "🗿";
|
||||
const MOYAI_URL =
|
||||
"https://github.com/Equicord/Ignore/raw/main/moyai.mp3";
|
||||
"https://github.com/Equicord/Ignore/raw/main/sounds/moyai/moyai.mp3";
|
||||
const MOYAI_URL_HD =
|
||||
"https://github.com/Equicord/Ignore/raw/main/moyai_hd.wav";
|
||||
"https://github.com/Equicord/Ignore/raw/main/sounds/moyai/moyai.wav";
|
||||
|
||||
const settings = definePluginSettings({
|
||||
volume: {
|
||||
|
|
Loading…
Reference in a new issue