From 30b5a1749294b769cd90bac0b1c3d0a8b82e49b0 Mon Sep 17 00:00:00 2001 From: Helloyunho Date: Mon, 25 Jan 2021 13:18:56 +0900 Subject: [PATCH] Change `getDMchannel` to `createDM` --- src/structures/user.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/user.ts b/src/structures/user.ts index 18a4330..8f2c99f 100644 --- a/src/structures/user.ts +++ b/src/structures/user.ts @@ -91,7 +91,7 @@ export class User extends Base { return this.mention } - async getDMchannel(): Promise { + async createDM(): Promise { return this.client.createDM(this) } }