mirror of
https://github.com/ChronosX88/psyced.git
synced 2024-11-08 11:31:01 +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;
|
||||
mixed t;
|
||||
|
||||
unless (stringp(text) && strlen(text)) return;
|
||||
|
||||
unless (stringp(text) && strlen(text)) {
|
||||
unless (sscanf(args, "%s %s", args, text)) return;
|
||||
}
|
||||
#ifdef GAMMA
|
||||
// fippoism typing indicator.. but shouldn't it *do* something
|
||||
// after detecting this CTCP-like "typing" flag hack?
|
||||
|
Loading…
Reference in New Issue
Block a user