mirror of
https://github.com/ChronosX88/psyced.git
synced 2024-12-05 00:22:19 +00:00
defanor reported Circe client needs to be able to send single word messages without colon as suggested somewhere in the IRC RFC
This commit is contained in:
parent
c3b7b4f664
commit
a68a84b924
@ -1189,8 +1189,9 @@ static privmsg(args, text, req) {
|
|||||||
string person,room;
|
string person,room;
|
||||||
mixed t;
|
mixed t;
|
||||||
|
|
||||||
unless (stringp(text) && strlen(text)) return;
|
unless (stringp(text) && strlen(text)) {
|
||||||
|
unless (sscanf(args, "%s %s", args, text)) return;
|
||||||
|
}
|
||||||
#ifdef GAMMA
|
#ifdef GAMMA
|
||||||
// fippoism typing indicator.. but shouldn't it *do* something
|
// fippoism typing indicator.. but shouldn't it *do* something
|
||||||
// after detecting this CTCP-like "typing" flag hack?
|
// after detecting this CTCP-like "typing" flag hack?
|
||||||
|
Loading…
Reference in New Issue
Block a user