Skip to content
This repository has been archived by the owner on Aug 15, 2022. It is now read-only.

Commit

Permalink
fix: fixed incorrect support server invite
Browse files Browse the repository at this point in the history
  • Loading branch information
animafps committed Nov 6, 2021
1 parent 1ad4b44 commit 43a701c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
Binary file modified docs/assets/images/demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 9 additions & 9 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Welcome!
---

!!! tip
This documentation outlines everything there is to know about FPSMath.
This documentation outlines everything there is to know about FPSMath.

If you're new to FPSMath, we suggest you follow this guide by clicking "Next" at the bottom of the page when you're done reading!

Expand All @@ -15,13 +15,13 @@ FPSMath is a Discord bot designed to convert video game sensitivities, FOV value

## Why FPSMath

- FPSMath is the only calculation bot for everything to do with video game calculations
- Has over [20 games supported](games.md) and many more are added weekly so you can convert for your favorite games
- Supports over 5 different units of sensitivity measurement(cm/rev, MPI, arcmin, deg/mm, inch/rev)
- Allows for custom yaw values and FoV types so even if a game is not officially supported/aliased you can still do the calculations and conversions
- It's even [open source](https://github.com/animafps/fpsmath)!
- FPSMath is the only calculation bot for everything to do with video game calculations
- Has over [20 games supported](games.md) and many more are added weekly so you can convert for your favorite games
- Supports over 5 different units of sensitivity measurement(cm/rev, MPI, arcmin, deg/mm, inch/rev)
- Allows for custom yaw values and FoV types so even if a game is not officially supported/aliased you can still do the calculations and conversions
- It's even [open source](https://github.com/animafps/fpsmath)!

!!! caution
Under Construction
!!! info
For further support or feedback about the bot or the documentation.

More Info Coming Soon!
Join the [support Discord server](https://discord.gg/Bg2gNT35s9).
2 changes: 1 addition & 1 deletion src/commands/Misc/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class UserCommand extends Command {
)
.addField(
'Links',
`[**Bot Invite**](https://discord.com/oauth2/authorize?client_id=${this.container.client.id}&scope=bot&permissions=19520)\nInvite FPSMath\n\n[**Documentation**](https://fpsmath.xyz)\nGuides, Commands and everything else you need\n\n[**Developer**](https://animafps.xyz)\nMy developers website\n\n[**Support Server Invite**](https://discord.gg/xJdQxps)\nNeed Assistance? Join and find support\n\n[**Source Code**](https://github.com/animafps/fpsmath)`
`[**Bot Invite**](https://discord.com/oauth2/authorize?client_id=${this.container.client.id}&scope=bot&permissions=19520)\nInvite FPSMath\n\n[**Documentation**](https://fpsmath.xyz)\nGuides, Commands and everything else you need\n\n[**Developer**](https://animafps.xyz)\nMy developers website\n\n[**Support Server Invite**](https://discord.gg/Bg2gNT35s9)\nNeed Assistance? Join and find support\n\n[**Source Code**](https://github.com/animafps/fpsmath)`
)
.setTimestamp(Date.now())
return message.reply({ embeds: [Embed] })
Expand Down
2 changes: 1 addition & 1 deletion src/commands/Misc/invite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { ApplyOptions } from '@sapphire/decorators'
export class UserCommand extends Command {
public async messageRun(message: Message) {
const embed = new MessageEmbed().setColor('#0099ff').setDescription(`
[Invite FPSMath to your server](https://discord.com/oauth2/authorize?client_id=${this.container.client.id}&scope=bot&permissions=19520) | [Join Support Server](https://discord.gg/xJdQxps)
[Invite FPSMath to your server](https://discord.com/oauth2/authorize?client_id=${this.container.client.id}&scope=bot&permissions=19520) | [Join Support Server](https://discord.gg/Bg2gNT35s9)
`)
return message.reply({ embeds: [embed] })
}
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const client = new SapphireClient({
partials: ['MESSAGE', 'CHANNEL'],
presence: {
status: 'online',
activities: [{ name: 'fps-help', type: 'LISTENING' }],
activities: [{ name: 'fps-help | fpsmath.xyz', type: 'PLAYING' }],
},
})

Expand Down

0 comments on commit 43a701c

Please sign in to comment.