diff --git a/src/structures/MessagePayload.js b/src/structures/MessagePayload.js index 77b3277..16a7e97 100644 --- a/src/structures/MessagePayload.js +++ b/src/structures/MessagePayload.js @@ -154,12 +154,7 @@ class MessagePayload { } let flags; - if ( - // eslint-disable-next-line eqeqeq - this.options.flags != null || - (this.isMessage && typeof this.options.reply === 'undefined') || - this.isMessageManager - ) { + if (this.options.flags != null) { flags = new MessageFlags(this.options.flags).bitfield; }