summaryrefslogtreecommitdiff
path: root/dist/classes/Message.js
diff options
context:
space:
mode:
Diffstat (limited to 'dist/classes/Message.js')
-rw-r--r--dist/classes/Message.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/dist/classes/Message.js b/dist/classes/Message.js
index 18e0f75..4cf7b8f 100644
--- a/dist/classes/Message.js
+++ b/dist/classes/Message.js
@@ -2,7 +2,8 @@
Object.defineProperty(exports, "__esModule", { value: true });
exports.Message = void 0;
class Message {
- constructor(user, time, channel) {
+ constructor(user, time, channel, client) {
+ this.client = client;
this.channel = channel;
this.author = user;
this.createdAt = new Date(time);