Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(about): add random command and remove verify command #152

Merged
merged 1 commit into from
May 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/commands/about.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ export const about: Command = {
run: async interaction => {
const commands = [
`${bold(inlineCode('/about'))} to see this message again`,
`${bold(inlineCode('/verify'))} to link your Steam account to Discord`,
`${bold(inlineCode('/user'))} to get information about a user`,
`${bold(
inlineCode('/level')
)} to get information about a level (or list levels)`,
`${bold(inlineCode('/ranking'))} to get the world record leaderboard`,
`${bold(inlineCode('/random'))} to get information about a random level`,
`${bold(inlineCode('/rankings'))} to get the world record leaderboard`,
`${bold(
inlineCode('/recent')
)} to get the most recent personal best records`
)} to get the most recent personal best records`,
`${bold(inlineCode('/user'))} to get information about a user`
]

const embed = new EmbedBuilder()
Expand All @@ -53,7 +53,7 @@ export const about: Command = {
name: 'About the Bot',
value: `The discord bot is built by <@104736549081468928> and is open-source on ${hyperlink(
'GitHub',
'https://github.com/wopian/zeepkist-bot'
'https://github.com/zeepkist/zeepkist-bot'
)}\n\nYou can support the development of the bot and their other open-source projects on ${hyperlink(
'Ko-fi/wopian',
'https://ko-fi.com/wopian'
Expand Down