mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 11:33:30 +01:00
Fixed update to updateMessage
This commit is contained in:
@@ -46,7 +46,7 @@ var Message = (function () {
|
|||||||
};
|
};
|
||||||
|
|
||||||
Message.prototype.update = function update() {
|
Message.prototype.update = function update() {
|
||||||
return this.client.update.apply(this.client, reg(this, arguments));
|
return this.client.updateMessage.apply(this.client, reg(this, arguments));
|
||||||
};
|
};
|
||||||
|
|
||||||
Message.prototype.reply = function reply() {
|
Message.prototype.reply = function reply() {
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ class Message{
|
|||||||
}
|
}
|
||||||
|
|
||||||
update(){
|
update(){
|
||||||
return this.client.update.apply(this.client, reg(this, arguments));
|
return this.client.updateMessage.apply(this.client, reg(this, arguments));
|
||||||
}
|
}
|
||||||
|
|
||||||
reply(){
|
reply(){
|
||||||
|
|||||||
Reference in New Issue
Block a user