diff options
author | megumin <megumin.bakaretsurie@gmail.com> | 2022-11-11 22:50:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 23:50:09 +0100 |
commit | 30ca4f1cf9cc1a4179f5c7ef5cfb47eaff83f56a (patch) | |
tree | 8ee2a9e7f83ba8c3c2441636e5d122de3aa663b4 /src/plugins/noReplyMention.ts | |
parent | 62e0787cf25a76881fac79b5f3df0ebda706bb21 (diff) | |
download | Vencord-30ca4f1cf9cc1a4179f5c7ef5cfb47eaff83f56a.tar.gz Vencord-30ca4f1cf9cc1a4179f5c7ef5cfb47eaff83f56a.tar.bz2 Vencord-30ca4f1cf9cc1a4179f5c7ef5cfb47eaff83f56a.zip |
feat: Badge API (#206)
Diffstat (limited to 'src/plugins/noReplyMention.ts')
-rw-r--r-- | src/plugins/noReplyMention.ts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/plugins/noReplyMention.ts b/src/plugins/noReplyMention.ts index d516450..2e5e969 100644 --- a/src/plugins/noReplyMention.ts +++ b/src/plugins/noReplyMention.ts @@ -16,15 +16,13 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ +import { Devs } from "../utils/constants"; import definePlugin from "../utils/types"; export default definePlugin({ name: "NoReplyMention", description: "Disables reply pings by default", - authors: [{ - name: "DustyAngel47", - id: 714583473804935238n - }], + authors: [Devs.DustyAngel47], patches: [ { find: "CREATE_PENDING_REPLY:function", |