From 0e6b5e9193af9f2e83aed3a9f36e7ad095149c87 Mon Sep 17 00:00:00 2001 From: lipgloss Date: Mon, 27 Feb 2017 00:03:24 -0700 Subject: [PATCH] Change update to create (#1231) --- src/structures/Guild.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/Guild.js b/src/structures/Guild.js index 7d5000c00..4498fe297 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -633,7 +633,7 @@ class Guild { * .catch(console.error); */ createChannel(name, type, overwrites) { - return this.client.rest.methods.updateChannel(this, name, type, overwrites); + return this.client.rest.methods.createChannel(this, name, type, overwrites); } /**