aboutsummaryrefslogtreecommitdiff
path: root/src/commands/dev
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-12-13 20:22:20 -0500
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-12-13 20:22:20 -0500
commit9f705a0e5a90177784d45d20200dbaa46a569e78 (patch)
tree15390ea91d0ff3c3912be2b8cbe354f8703bb652 /src/commands/dev
parent2d6bb50ce8c979e543f0d2831b3db9d8644be477 (diff)
downloadtanzanite-9f705a0e5a90177784d45d20200dbaa46a569e78.tar.gz
tanzanite-9f705a0e5a90177784d45d20200dbaa46a569e78.tar.bz2
tanzanite-9f705a0e5a90177784d45d20200dbaa46a569e78.zip
fix more bugs
Diffstat (limited to 'src/commands/dev')
-rw-r--r--src/commands/dev/eval.ts12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/commands/dev/eval.ts b/src/commands/dev/eval.ts
index 5b30d96..2393a9b 100644
--- a/src/commands/dev/eval.ts
+++ b/src/commands/dev/eval.ts
@@ -16,6 +16,15 @@ export default class EvalCommand extends BushCommand {
examples: ['eval message.channel.delete()'],
args: [
{
+ id: 'code',
+ description: 'The code you would like to evaluate.',
+ match: 'rest',
+ prompt: 'What would you like to eval?',
+ retry: '{error} Invalid code to eval.',
+ slashType: 'STRING',
+ only: 'slash'
+ },
+ {
id: 'sel_depth',
description: 'How deep to inspect the output.',
match: 'option',
@@ -96,7 +105,8 @@ export default class EvalCommand extends BushCommand {
match: 'rest',
prompt: 'What would you like to eval?',
retry: '{error} Invalid code to eval.',
- slashType: 'STRING'
+ slashType: 'STRING',
+ only: 'text'
}
],
slash: true,