diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 48edd956..0f6cf7d3 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -2,6 +2,7 @@ Update _ January 2024 +- fix: remove synaptic command (31/01/2024) - feat: Disabling migrated commands and adding a message to highlight the same (27/01/2024) - refactor: change cdn url (07/01/2024) - fix: update A32NX download links (03/01/2024) diff --git a/.github/command-docs.md b/.github/command-docs.md index bcc95566..dbffc31c 100644 --- a/.github/command-docs.md +++ b/.github/command-docs.md @@ -116,7 +116,6 @@ | .roadmap | FBW Roadmap | .goals | | .salty | Provides link to salty discord server | .sal
.ninjo | | .spad | Provides link to spad discord server | --- | -| .synaptic | Provides link to synaptic discord server | .syn | | .temporarycommand | Runs a temporary command created by the Moderators and can list them. These are temporary commands for simple messages. | .tempcommand
.tc | | .translate | Provides information on how to contribute to various FlyByWire translation efforts | --- | | .website | Provides a link to the FlyByWire Simulations website | .web | diff --git a/src/commands/general/synaptic.ts b/src/commands/general/synaptic.ts deleted file mode 100644 index 6b7c886b..00000000 --- a/src/commands/general/synaptic.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { CommandDefinition, replyWithMsg } from '../../lib/command'; -import { CommandCategory } from '../../constants'; - -export const synaptic: CommandDefinition = { - name: ['synaptic', 'syn'], - description: 'Provides link to synaptic discord server', - category: CommandCategory.GENERAL, - executor: (msg) => replyWithMsg(msg, 'https://discord.gg/acQkSvrePG'), -}; diff --git a/src/commands/index.ts b/src/commands/index.ts index 97e2b838..2c5e9479 100644 --- a/src/commands/index.ts +++ b/src/commands/index.ts @@ -57,7 +57,6 @@ import { xp } from './memes/xp'; import { addon } from './memes/addon'; import { freetext } from './aircraft/freetext'; import { cowsay } from './memes/cowsay'; -import { synaptic } from './general/synaptic'; import { directx12 } from './support/directx12'; import { cfms } from './aircraft/cfms'; import { fdr } from './support/fdr'; @@ -232,7 +231,6 @@ const commands: BaseCommandDefinition[] = [ addon, freetext, cowsay, - synaptic, directx12, cfms, fdr,