maximum pfuschimus

This commit is contained in:
Flummi 2018-11-11 06:14:17 +01:00
parent 4afe02ffe8
commit 49ec286bb9

View File

@ -91,11 +91,11 @@ export class irc extends EventEmitter {
return data.charAt(0) === ":" ? { return data.charAt(0) === ":" ? {
prefix: tmp.shift(), prefix: tmp.shift(),
command: tmp.shift(), command: tmp.shift(),
params: tmp params: [tmp.shift(), tmp.join(" :")]
} : { } : {
prefix: null, prefix: null,
command: tmp.shift(), command: tmp.shift(),
params: tmp params: [tmp.shift(), tmp.join(" :")]
}; };
} }
reply(tmp) { reply(tmp) {