make pills bold

This commit is contained in:
derpystuff 2022-10-03 22:37:24 +02:00
parent 15526dcc15
commit 2d322e4764
2 changed files with 5 additions and 5 deletions

View file

@ -25,5 +25,5 @@ module.exports.timestamp = function(time, flag = "t"){
module.exports.iconPill = function(icon, content){
if(!ICONS[icon]) icon = "question"
return ICONS[icon] + ' ' + "` " + content + " `"
return ICONS[icon] + " **` " + content + " `**"
}