Skip to content

Commit

Permalink
update FAQ links
Browse files Browse the repository at this point in the history
  • Loading branch information
benw202 committed Jan 10, 2025
1 parent 1ebbfad commit 275e63c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog

Update <small>_ January 2025</small>

- fix: Update FAQ links (10/01/2025)

Update <small>_ November 2024</small>

Expand Down
10 changes: 7 additions & 3 deletions src/commands/moderation/faq/functions/faqPrintAll.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ChatInputCommandInteraction } from 'discord.js';
import { constantsConfig, imageBaseUrl, Logger, makeEmbed, FAQ } from '../../../../lib';
import { constantsConfig, imageBaseUrl, Logger, makeEmbed, FAQ, makeLines } from '../../../../lib';

const FLIGHT_DECK_IMAGE_URL = `${imageBaseUrl}/moderation/faq.png`;

Expand All @@ -8,11 +8,15 @@ const linksEmbed = makeEmbed({
fields: [
{
name: '**Docs FAQ**',
value: 'https://docs.flybywiresim.com/fbw-a32nx/faq/',
value: 'https://docs.flybywiresim.com/aircraft/faq/',
},
{
name: '**Beginners Guide**',
value: 'https://docs.flybywiresim.com/pilots-corner/beginner-guide/overview/',
value: makeLines([
'A32NX: https://docs.flybywiresim.com/pilots-corner/a32nx/a32nx-beginner-guide/overview/',
'',
'A380X: https://docs.flybywiresim.com/pilots-corner/a380x/a380x-beginner-guide/overview/',
]),
},
{
name: '**Flight School**',
Expand Down

0 comments on commit 275e63c

Please sign in to comment.