Align MOTD after -
parent
4cce893eab
commit
37ec1e8232
5
handle.c
5
handle.c
|
@ -176,8 +176,11 @@ static void handleReplyISupport(struct Message *msg) {
|
||||||
static void handleReplyMOTD(struct Message *msg) {
|
static void handleReplyMOTD(struct Message *msg) {
|
||||||
require(msg, false, 2);
|
require(msg, false, 2);
|
||||||
char *line = msg->params[1];
|
char *line = msg->params[1];
|
||||||
if (!strncmp(line, "- ", 2)) line += 2;
|
if (!strncmp(line, "- ", 2)) {
|
||||||
|
uiFormat(Network, Cold, tagTime(msg), "\3%d-\3\t%s", Gray, &line[2]);
|
||||||
|
} else {
|
||||||
uiFormat(Network, Cold, tagTime(msg), "%s", line);
|
uiFormat(Network, Cold, tagTime(msg), "%s", line);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void handleJoin(struct Message *msg) {
|
static void handleJoin(struct Message *msg) {
|
||||||
|
|
Loading…
Reference in New Issue