Distinguish self with square brackets
parent
4771a54bf9
commit
6f9b928e53
9
handle.c
9
handle.c
|
@ -228,14 +228,11 @@ static void handlePrivmsg(char *prefix, char *params) {
|
||||||
if (mesg[0] == '\1') {
|
if (mesg[0] == '\1') {
|
||||||
strsep(&mesg, " ");
|
strsep(&mesg, " ");
|
||||||
char *action = strsep(&mesg, "\1");
|
char *action = strsep(&mesg, "\1");
|
||||||
uiFmt(
|
uiFmt("* \3%d%s\3 %s", color(user), nick, action);
|
||||||
"* \3%d%s\3%s %s",
|
|
||||||
color(user), nick, (self ? "15" : ""), action
|
|
||||||
);
|
|
||||||
} else {
|
} else {
|
||||||
uiFmt(
|
uiFmt(
|
||||||
"<%s\3%d%s\17>\3%s %s",
|
"%c%c\3%d%s\17%c %s",
|
||||||
(ping ? "\26" : ""), color(user), nick, (self ? "15" : ""), mesg
|
self["<["], ping["\17\26"], color(user), nick, self[">]"], mesg
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue