diff options
author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2021-05-25 19:03:21 +0000 |
---|---|---|
committer | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2021-05-25 19:03:21 +0000 |
commit | 93ce256f698a8c1d6d0bd4f33f258b39d7f0c748 (patch) | |
tree | 0085cf80a0846594d1d6cea93210d30e2508f851 /src/commands/owner | |
parent | df172e0b0d4180d025e19b80f4f091b01401e0d1 (diff) | |
download | tanzanite-93ce256f698a8c1d6d0bd4f33f258b39d7f0c748.tar.gz tanzanite-93ce256f698a8c1d6d0bd4f33f258b39d7f0c748.tar.bz2 tanzanite-93ce256f698a8c1d6d0bd4f33f258b39d7f0c748.zip |
Automatically format code
Diffstat (limited to 'src/commands/owner')
-rw-r--r-- | src/commands/owner/eval.ts | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/commands/owner/eval.ts b/src/commands/owner/eval.ts index 0b793c9..a63b977 100644 --- a/src/commands/owner/eval.ts +++ b/src/commands/owner/eval.ts @@ -81,14 +81,14 @@ export default class EvalCommand extends BotCommand { '📥 Input', code.length > 1012 ? 'Too large to display. Hastebin: ' + - (await this.client.util.haste(code)) + (await this.client.util.haste(code)) : '```js\n' + code + '```' ) .addField( '📤 Output', output.length > 1012 ? 'Too large to display. Hastebin: ' + - (await this.client.util.haste(output)) + (await this.client.util.haste(output)) : '```js\n' + output + '```' ) .setColor('#66FF00') @@ -104,18 +104,18 @@ export default class EvalCommand extends BotCommand { '📥 Input', code.length > 1012 ? 'Too large to display. Hastebin: ' + - (await this.client.util.haste(code)) + (await this.client.util.haste(code)) : '```js\n' + code + '```' ) .addField( '📤 Output', e.length > 1012 ? 'Too large to display. Hastebin: ' + - (await this.client.util.haste(e)) + (await this.client.util.haste(e)) : '```js\n' + - e + - '```Full stack:' + - (await this.client.util.haste(e.stack)) + e + + '```Full stack:' + + (await this.client.util.haste(e.stack)) ) .setColor('#FF0000') .setFooter( |