[+] New message_create event that is fired on all message creations.

A new property "fromMe" has also been added to messages.

Close #8
This commit is contained in:
Pedro Lopez
2019-09-08 03:48:19 -04:00
parent cde0034d93
commit 18199d8120
4 changed files with 14 additions and 2 deletions

View File

@@ -23,6 +23,7 @@ class Message extends Base {
this.author = data.author;
this.isForwarded = data.isForwarded;
this.broadcast = data.broadcast;
this.fromMe = data.id.fromMe;
return super._patch(data);
}