From a40a105250a07d1c40b90d92f64d3f3a2799cf21 Mon Sep 17 00:00:00 2001 From: Crawl Date: Wed, 18 Mar 2020 05:15:09 +0100 Subject: [PATCH] Update APIMessage.js --- src/structures/APIMessage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/APIMessage.js b/src/structures/APIMessage.js index 99562511..d1a89585 100644 --- a/src/structures/APIMessage.js +++ b/src/structures/APIMessage.js @@ -114,8 +114,8 @@ class APIMessage { replyPrefix = this.options.replyPrefixer ? this.options.replyPrefixer(this.options.reply) : this.target.client.options.replyPrefixer - ? this.target.client.options.replyPrefixer(this.options.reply) - : `<@${this.options.reply instanceof GuildMember && this.options.reply.nickname ? '!' : ''}${id}>, `; + ? this.target.client.options.replyPrefixer(this.options.reply) + : `<@${this.options.reply instanceof GuildMember && this.options.reply.nickname ? '!' : ''}${id}>, `; if (isSplit) splitOptions.prepend = `${replyPrefix}${splitOptions.prepend || ''}`; }