Change `getDMchannel` to `createDM`

This commit is contained in:
Helloyunho 2021-01-25 13:18:56 +09:00
parent 108bd3ea62
commit 30b5a17492
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ export class User extends Base {
return this.mention
}
async getDMchannel(): Promise<DMChannel> {
async createDM(): Promise<DMChannel> {
return this.client.createDM(this)
}
}