Change ban list formatting

master
C. McEnroe 2020-02-20 03:44:57 -05:00
parent b3c5458fc9
commit a3b6d5d9a7
1 changed files with 3 additions and 3 deletions

View File

@ -511,15 +511,15 @@ static void handleReplyBanList(struct Message *msg) {
strftime(since, sizeof(since), "%F %T", localtime(&time)); strftime(since, sizeof(since), "%F %T", localtime(&time));
uiFormat( uiFormat(
id, Cold, tagTime(msg), id, Cold, tagTime(msg),
"Banned in \3%02d%s\3 by \3%02d%s\3 since %s: %s", "Banned from \3%02d%s\3 since %s by \3%02d%s\3: %s",
hash(msg->params[1]), msg->params[1], hash(msg->params[1]), msg->params[1],
completeColor(id, msg->params[3]), msg->params[3], since, since, completeColor(id, msg->params[3]), msg->params[3],
msg->params[2] msg->params[2]
); );
} else { } else {
uiFormat( uiFormat(
id, Cold, tagTime(msg), id, Cold, tagTime(msg),
"Banned in \3%02d%s\3: %s", "Banned from \3%02d%s\3: %s",
hash(msg->params[1]), msg->params[1], msg->params[2] hash(msg->params[1]), msg->params[1], msg->params[2]
); );
} }