From fdeb44a85074a2b8cf4c6dd5b56d7870e7a6fbea Mon Sep 17 00:00:00 2001 From: Felanbird <41973452+Felanbird@users.noreply.github.com> Date: Wed, 13 Mar 2024 05:16:33 -0400 Subject: [PATCH] fix typo in timeout logs --- lib/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/app.js b/lib/app.js index 0778c8b4e..6dd639fc3 100644 --- a/lib/app.js +++ b/lib/app.js @@ -483,8 +483,8 @@ client.on('guildMemberUpdate', async (oldMember, newMember) => { } const timeoutMessage = newMember.communicationDisabledUntil - ? `was timeouted until ****` - : 'is no longer timeouted' + ? `was timed out until ****` + : 'is no longer timed out' const executorMessage = auditEntry && auditEntry.executor.tag ? ` by **${auditEntry.executor.tag}**`