diff --git a/commands/search/lyrics.js b/commands/search/lyrics.js
index 6215ee25..ac458953 100644
--- a/commands/search/lyrics.js
+++ b/commands/search/lyrics.js
@@ -53,7 +53,7 @@ module.exports = class LyricsCommand extends Command {
const { text } = await request.get(`https://www.azlyrics.com/lyrics/${artist}/${song}.html`);
const lyrics = text.match(lyricRegex)[1];
return lyrics
- .replace(/
/g, '\n')
+ .replace(/
/g, '')
.replace(/<\/?div>/g, '')
.trim();
}