diff --git a/structure/Modmail.js b/structure/Modmail.js index 63cbdb3..8e26fd0 100644 --- a/structure/Modmail.js +++ b/structure/Modmail.js @@ -553,7 +553,8 @@ class Modmail { if (this.lastReminder) { if (channel.lastMessage.id === this.lastReminder.id) return this.lastReminder.edit(str); await this.lastReminder.delete(); - } else this.lastReminder = await channel.send(str); + } + this.lastReminder = await channel.send(str); }