about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/command.c b/command.c
index 3e201cc..cab1d26 100644
--- a/command.c
+++ b/command.c
@@ -75,7 +75,7 @@ static void commandMsg(size_t id, char *params) {
 	(void)id;
 	char *nick = strsep(&params, " ");
 	if (!params) return;
-	ircFormat("PRIVMSG %s :%s\r\n", nick, params);
+	commandPrivmsg(idFor(nick), params);
 }
 
 static void commandJoin(size_t id, char *params) {