mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-09 06:33:05 -04:00
weather
This commit is contained in:
parent
7107108cbe
commit
974f5c6a53
5 changed files with 72 additions and 1 deletions
|
@ -23,7 +23,11 @@ module.exports.timestamp = function(time, flag = "t"){
|
|||
return `<t:${Math.floor(time/1000)}:${flag}>`
|
||||
}
|
||||
|
||||
module.exports.pill = function(content){
|
||||
return " **` " + content + " `**"
|
||||
}
|
||||
|
||||
module.exports.iconPill = function(icon, content){
|
||||
if(!ICONS[icon]) icon = "question"
|
||||
return ICONS[icon] + " **` " + content + " `**"
|
||||
return ICONS[icon] + " **` " + content + " `**"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue