Changed user specific motd seen log entry to blue bg

This commit is contained in:
mrfry 2020-11-07 15:02:05 +01:00
parent 71eb4b1a03
commit ffdb2c6db6

View file

@ -137,7 +137,7 @@ function GetApp() {
function userSpecificMotdSeenBy(id) {
if (!userSpecificMotd[id].seen) {
logger.Log(`User #${id}'s user specific motd is now seen.`)
logger.Log(`User #${id}'s user specific motd is now seen.`, logger.GetColor('bluebg'))
userSpecificMotd[id].seen = true
utils.WriteFile(JSON.stringify(userSpecificMotd), userSpecificMotdFile)
}