diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2005-11-20 22:02:18 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2005-11-20 22:02:18 +0100 |
commit | df61847525ba9e8d6d42c4295d034175fd2d0445 (patch) | |
tree | 3d3397a92f59f16005c2060882010ba7ef5d972f /protocols/nogaim.c | |
parent | 831c955cf3ed0731a53543594ffd427a0a8eb036 (diff) |
Incoming typing notices are now sent as a CTCP. Better consistency.
Don't forget to upgrade your typing notice script.
Diffstat (limited to 'protocols/nogaim.c')
-rw-r--r-- | protocols/nogaim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/nogaim.c b/protocols/nogaim.c index 22240d8a..41361e07 100644 --- a/protocols/nogaim.c +++ b/protocols/nogaim.c @@ -682,7 +682,7 @@ void serv_got_typing( struct gaim_connection *gc, char *handle, int timeout ) return; if( ( u = user_findhandle( gc, handle ) ) ) - irc_noticefrom( gc->irc, u->nick, "* Typing a message *" ); + irc_msgfrom( gc->irc, u->nick, "\1TYPING 1\1" ); } void serv_got_chat_left( struct gaim_connection *gc, int id ) |