diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-05-09 18:02:15 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-05-09 18:03:06 +0200 |
| commit | 0ee8e0e5239e3f76911834da54d2c72a4a149804 (patch) | |
| tree | fca810d542ffad451699379a8dc61067c7ea632b /views/guild_create.js | |
| parent | 94adb2f9f182e50f6d60aadc70bb8bf8f74f2371 (diff) | |
| download | discordbot-0ee8e0e5239e3f76911834da54d2c72a4a149804.tar.gz discordbot-0ee8e0e5239e3f76911834da54d2c72a4a149804.zip | |
error handling, migration to template
Diffstat (limited to 'views/guild_create.js')
| -rw-r--r-- | views/guild_create.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/guild_create.js b/views/guild_create.js index 8e7be81..38720e1 100644 --- a/views/guild_create.js +++ b/views/guild_create.js @@ -38,7 +38,7 @@ module.exports = class extends View { // TODO move to super class async respond() { this.response = await util.respond(this.msg, - await this.text(), this.response); + await this.text() + "\n" + await this.help(), this.response); if (!this.hasButtons) { await util.reactionButtons(this.response, await this.buttons()); |
