diff options
| author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-04 17:07:38 -0400 |
|---|---|---|
| committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-04 17:07:38 -0400 |
| commit | 1dee5bcda6a43eaa7fcc88ed3b0e458f32104de4 (patch) | |
| tree | aa4ae8c7e2315d6ebd6500000a17d3a1c45b4c87 /src/commands/moulberry-bush | |
| parent | 153a40fbcd314459f94d9a2b44d3466c930c4e35 (diff) | |
| download | tanzanite-1dee5bcda6a43eaa7fcc88ed3b0e458f32104de4.tar.gz tanzanite-1dee5bcda6a43eaa7fcc88ed3b0e458f32104de4.tar.bz2 tanzanite-1dee5bcda6a43eaa7fcc88ed3b0e458f32104de4.zip | |
cleaned up lib imports
Diffstat (limited to 'src/commands/moulberry-bush')
| -rw-r--r-- | src/commands/moulberry-bush/capePerms.ts | 3 | ||||
| -rw-r--r-- | src/commands/moulberry-bush/giveawayPing.ts | 4 | ||||
| -rw-r--r-- | src/commands/moulberry-bush/level.ts | 6 | ||||
| -rw-r--r-- | src/commands/moulberry-bush/rule.ts | 4 |
4 files changed, 5 insertions, 12 deletions
diff --git a/src/commands/moulberry-bush/capePerms.ts b/src/commands/moulberry-bush/capePerms.ts index b6508d0..539ddf6 100644 --- a/src/commands/moulberry-bush/capePerms.ts +++ b/src/commands/moulberry-bush/capePerms.ts @@ -1,8 +1,7 @@ import { Constants } from 'discord-akairo'; import { MessageEmbed } from 'discord.js'; import got from 'got'; -import { BushCommand } from '../../lib/extensions/discord-akairo/BushCommand'; -import { BushMessage } from '../../lib/extensions/discord.js/BushMessage'; +import { BushCommand, BushMessage } from '../../lib'; export default class CapePermissionsCommand extends BushCommand { private nameMap = { diff --git a/src/commands/moulberry-bush/giveawayPing.ts b/src/commands/moulberry-bush/giveawayPing.ts index dbbbfef..80555b1 100644 --- a/src/commands/moulberry-bush/giveawayPing.ts +++ b/src/commands/moulberry-bush/giveawayPing.ts @@ -1,6 +1,4 @@ -import { BushCommand } from '../../lib/extensions/discord-akairo/BushCommand'; -import { BushMessage } from '../../lib/extensions/discord.js/BushMessage'; -import AllowedMentions from '../../lib/utils/AllowedMentions'; +import { AllowedMentions, BushCommand, BushMessage } from '../../lib'; export default class GiveawayPingCommand extends BushCommand { public constructor() { diff --git a/src/commands/moulberry-bush/level.ts b/src/commands/moulberry-bush/level.ts index eabf7a0..90a4b7f 100644 --- a/src/commands/moulberry-bush/level.ts +++ b/src/commands/moulberry-bush/level.ts @@ -1,13 +1,11 @@ import { Message, User } from 'discord.js'; -import { BushCommand } from '../../lib/extensions/discord-akairo/BushCommand'; -import { BushSlashMessage } from '../../lib/extensions/discord-akairo/BushSlashMessage'; -import { Level } from '../../lib/models'; +import { BushCommand, BushSlashMessage, Level } from '../../lib'; /* import canvas from 'canvas'; import { MessageAttachment } from 'discord.js'; import { join } from 'path'; import got from 'got/dist/source'; -import { CanvasProgressBar } from '../../lib/extensions/Util'; +import { CanvasProgressBar } from '../../lib'; */ export default class LevelCommand extends BushCommand { diff --git a/src/commands/moulberry-bush/rule.ts b/src/commands/moulberry-bush/rule.ts index 2bcbb8d..516aadf 100644 --- a/src/commands/moulberry-bush/rule.ts +++ b/src/commands/moulberry-bush/rule.ts @@ -1,8 +1,6 @@ import { Argument, Constants } from 'discord-akairo'; import { MessageEmbed, User } from 'discord.js'; -import { BushCommand } from '../../lib/extensions/discord-akairo/BushCommand'; -import { BushMessage } from '../../lib/extensions/discord.js/BushMessage'; -import AllowedMentions from '../../lib/utils/AllowedMentions'; +import { AllowedMentions, BushCommand, BushMessage } from '../../lib'; const rules = [ { |
