diff --git a/src/modules/logging.js b/src/modules/logging.js index 7b54056..9c2950d 100644 --- a/src/modules/logging.js +++ b/src/modules/logging.js @@ -26,7 +26,7 @@ async function getLoggingChannel(guild) { function formatChange(before, after) { const beforeFormatted = before != null ? `\`${before}\`` : ""; - const afterFormatted = after != null ? `\`after\`` : ""; + const afterFormatted = after != null ? `\`${after}\`` : ""; return `${beforeFormatted} -> ${afterFormatted}`; }