mirror of
https://github.com/danbulant/discord.js
synced 2026-06-18 22:21:17 +00:00
Fixed update to updateMessage
This commit is contained in:
parent
a5581382b9
commit
373358cf49
2 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ var Message = (function () {
|
|||
};
|
||||
|
||||
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() {
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class Message{
|
|||
}
|
||||
|
||||
update(){
|
||||
return this.client.update.apply(this.client, reg(this, arguments));
|
||||
return this.client.updateMessage.apply(this.client, reg(this, arguments));
|
||||
}
|
||||
|
||||
reply(){
|
||||
|
|
|
|||
Loading…
Reference in a new issue