2023-08-12 00:23:00 +00:00
|
|
|
/*
|
2023-10-25 21:25:39 +00:00
|
|
|
* Vencord, a Discord client mod
|
2023-08-12 00:23:00 +00:00
|
|
|
* Copyright (c) 2023 Vendicated and contributors
|
2023-10-25 21:25:39 +00:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
*/
|
2023-08-12 00:23:00 +00:00
|
|
|
|
|
|
|
import { Devs } from "@utils/constants";
|
|
|
|
import definePlugin from "@utils/types";
|
|
|
|
|
2023-10-25 21:25:39 +00:00
|
|
|
// NOTE - Ultimately should probably be turned into a ringtone picker plugin
|
2023-08-12 00:23:00 +00:00
|
|
|
export default definePlugin({
|
|
|
|
name: "SecretRingToneEnabler",
|
2023-10-25 21:25:39 +00:00
|
|
|
description: "Always play the secret version of the discord ringtone (except during special ringtone events)",
|
|
|
|
authors: [Devs.AndrewDLO, Devs.FieryFlames],
|
2023-08-12 00:23:00 +00:00
|
|
|
patches: [
|
|
|
|
{
|
2024-05-03 22:07:43 +00:00
|
|
|
find: '"call_ringing_beat"',
|
2023-08-12 00:23:00 +00:00
|
|
|
replacement: {
|
2024-06-01 02:41:38 +00:00
|
|
|
match: /500!==\i\(\)\.random\(1,1e3\)/,
|
|
|
|
replace: "false",
|
2023-10-25 21:25:39 +00:00
|
|
|
}
|
2023-08-12 00:23:00 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|