master
Matthew 2020-08-18 20:49:33 -04:00
parent fc865be319
commit bd6fc1cf6f
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 2 additions and 2 deletions

View File

@ -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}`;
}
/**