mirror of
https://github.com/danbulant/discord.js
synced 2026-07-06 03:31:03 +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() {
|
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(){
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue