From bd6fc1cf6f22488b49fe31d0e38c5ba5bc3e390a Mon Sep 17 00:00:00 2001 From: Matthew R Date: Tue, 18 Aug 2020 20:49:33 -0400 Subject: [PATCH] fixes --- src/data/Thread.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/Thread.js b/src/data/Thread.js index b53466c..d9949ac 100644 --- a/src/data/Thread.js +++ b/src/data/Thread.js @@ -44,9 +44,9 @@ class Thread { const modName = (config.useNicknames ? moderator.nick || moderator.user.username : moderator.user.username); const modInfo = isAnonymous ? (mainRole ? mainRole.name : 'Staff') - : (mainRole ? `${mainRole.name} | ${modName}, ${find.pn.join(', ')}` : modName); + : (mainRole ? `${modName}, ${find.pn.join(', ')}\n${mainRole.name}` : modName); - return `**${modInfo}:** ${text}`; + return `**${modInfo}:**\n__________________________________________\n\n${text}`; } /**