From 9d24666f7c1002d8d2eb836accaeb591711ec3b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Pettersson?= Date: Tue, 2 Sep 2014 23:57:48 +0200 Subject: [PATCH] Fixed /msg outputting like an action locally. --- src/tox-weechat-commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tox-weechat-commands.c b/src/tox-weechat-commands.c index c0dfb04..75602c9 100644 --- a/src/tox-weechat-commands.c +++ b/src/tox-weechat-commands.c @@ -280,7 +280,7 @@ tox_weechat_cmd_msg(void *data, struct t_gui_buffer *buffer, (uint8_t *)argv_eol[1], strlen(argv_eol[2])); char *name = tox_weechat_get_self_name_nt(); - tox_weechat_chat_print_action(chat, name, argv_eol[1]); + tox_weechat_chat_print_message(chat, name, argv_eol[1]); free(name); }