formatting issues

This commit is contained in:
Ryan Cao 2023-01-17 13:11:36 +08:00
parent 2be950d71d
commit e856c04108
No known key found for this signature in database
2 changed files with 21 additions and 9 deletions

View file

@ -10,14 +10,14 @@ import { reuploadCommands } from './_reupload';
import * as BuildConfig from './constants';
import { parseLog } from './logs';
import { getLatestMinecraftVersion } from './utils/remoteVersions';
import { expandDiscordLink } from "./utils/resolveMessage";
import { expandDiscordLink } from './utils/resolveMessage';
import { membersCommand } from './commands/members';
import { starsCommand } from './commands/stars';
import { modrinthCommand } from './commands/modrinth';
import { tagsCommand } from './commands/tags';
import { jokeCommand } from './commands/joke';
import { roryCommand } from "./commands/rory";
import { roryCommand } from './commands/rory';
import random from 'just-random';
import { green, bold, yellow, cyan } from 'kleur/colors';
@ -122,7 +122,7 @@ client.on('interactionCreate', async (interaction) => {
await tagsCommand(interaction);
} else if (commandName === 'joke') {
await jokeCommand(interaction);
} else if (commandName === "rory") {
} else if (commandName === 'rory') {
await roryCommand(interaction);
}
}