diff options
Diffstat (limited to '')
-rw-r--r-- | litterbox.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/litterbox.c b/litterbox.c index 2180350..0213b31 100644 --- a/litterbox.c +++ b/litterbox.c @@ -272,11 +272,11 @@ static void querySearch(struct Message *msg) { format("NOTICE %s :(%s) [%s] ", msg->nick, context, time); switch (type) { break; case Privmsg: - format("<\3%02d%s\3> %s\r\n", color(user), nick, message); + format("\3%d<%s>\3 %s\r\n", color(user), nick, message); break; case Notice: - format("-\3%02d%s\3- %s\r\n", color(user), nick, message); + format("\3%d-%s-\3 %s\r\n", color(user), nick, message); break; case Action: - format("* \3%02d%s\3 %s\r\n", color(user), nick, message); + format("\3%d* %s\3 %s\r\n", color(user), nick, message); break; case Join: format("\3%02d%s\3 joined\r\n", color(user), nick); break; case Part: |