aboutsummaryrefslogtreecommitdiff
path: root/src/commands/dev
diff options
context:
space:
mode:
authorTymanWasTaken <32660892+tymanwastaken@users.noreply.github.com>2021-05-28 22:08:28 -0600
committerTymanWasTaken <32660892+tymanwastaken@users.noreply.github.com>2021-05-28 22:08:28 -0600
commitee665e568f244e1c465748718691404b7bf6feb0 (patch)
tree847333085377020969ce13cd6652d8894c503426 /src/commands/dev
parent35d8cbda559c479c66800d39535df02c807dc33a (diff)
parent57de6733b62c83ff197f9236f71545d8ef1e1103 (diff)
downloadtanzanite-ee665e568f244e1c465748718691404b7bf6feb0.tar.gz
tanzanite-ee665e568f244e1c465748718691404b7bf6feb0.tar.bz2
tanzanite-ee665e568f244e1c465748718691404b7bf6feb0.zip
Merge branch 'rewrite' of github.com:NotEnoughUpdates/bush-bot into rewrite
Diffstat (limited to 'src/commands/dev')
-rw-r--r--src/commands/dev/eval.ts29
-rw-r--r--src/commands/dev/setLevel.ts5
2 files changed, 28 insertions, 6 deletions
diff --git a/src/commands/dev/eval.ts b/src/commands/dev/eval.ts
index cfe75cc..bab5f8e 100644
--- a/src/commands/dev/eval.ts
+++ b/src/commands/dev/eval.ts
@@ -5,7 +5,8 @@ import { inspect, promisify } from 'util';
import { exec } from 'child_process';
const clean = (text) => {
- if (typeof text === 'string') return text.replace(/`/g, '`' + String.fromCharCode(8203)).replace(/@/g, '@' + String.fromCharCode(8203));
+ if (typeof text === 'string')
+ return text.replace(/`/g, '`' + String.fromCharCode(8203)).replace(/@/g, '@' + String.fromCharCode(8203));
else return text;
};
@@ -47,7 +48,10 @@ export default class EvalCommand extends BushCommand {
});
}
- public async exec(message: Message, { depth, code, silent }: { depth: number; code: string; silent: boolean }): Promise<void> {
+ public async exec(
+ message: Message,
+ { depth, code, silent }: { depth: number; code: string; silent: boolean }
+ ): Promise<void> {
const embed: MessageEmbed = new MessageEmbed();
try {
@@ -68,15 +72,30 @@ export default class EvalCommand extends BushCommand {
output = clean(output);
embed
.setTitle('✅ Evaled code successfully')
- .addField('📥 Input', code.length > 1012 ? 'Too large to display. Hastebin: ' + (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)) : '```js\n' + output + '```')
+ .addField(
+ '📥 Input',
+ code.length > 1012
+ ? 'Too large to display. Hastebin: ' + (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))
+ : '```js\n' + output + '```'
+ )
.setColor('#66FF00')
.setFooter(message.author.username, message.author.displayAvatarURL({ dynamic: true }))
.setTimestamp();
} catch (e) {
embed
.setTitle('❌ Code was not able to be evaled')
- .addField('📥 Input', code.length > 1012 ? 'Too large to display. Hastebin: ' + (await this.client.util.haste(code)) : '```js\n' + code + '```')
+ .addField(
+ '📥 Input',
+ code.length > 1012
+ ? 'Too large to display. Hastebin: ' + (await this.client.util.haste(code))
+ : '```js\n' + code + '```'
+ )
.addField(
'📤 Output',
e.length > 1012
diff --git a/src/commands/dev/setLevel.ts b/src/commands/dev/setLevel.ts
index 3a1bc85..e57e2f8 100644
--- a/src/commands/dev/setLevel.ts
+++ b/src/commands/dev/setLevel.ts
@@ -73,7 +73,10 @@ export default class SetLevelCommand extends BushCommand {
});
}
- async execSlash(message: CommandInteraction, { user, level }: { user: SlashCommandOption<void>; level: SlashCommandOption<number> }): Promise<void> {
+ async execSlash(
+ message: CommandInteraction,
+ { user, level }: { user: SlashCommandOption<void>; level: SlashCommandOption<number> }
+ ): Promise<void> {
await message.reply(await this.setLevel(user.user, level.value), {
allowedMentions: AllowedMentions.none()
});