From 2fee18320a511639b07929445d84a74f7cf95e78 Mon Sep 17 00:00:00 2001 From: Omar <70115175+ko-zone@users.noreply.github.com> Date: Sat, 26 Nov 2022 10:04:07 +0200 Subject: [PATCH] revision #2 --- .github/COMMANDS.md | 2 +- src/commands/index.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/COMMANDS.md b/.github/COMMANDS.md index ad84122..c4800bd 100644 --- a/.github/COMMANDS.md +++ b/.github/COMMANDS.md @@ -48,6 +48,7 @@ | .conflict | Describes process for narrowing down bugs and issues to the B78XH mod. | .conflicts | | .contentmanager | For initial troubleshooting, to make sure the base plane is up to date. | .cm | | .controls | Instructions on how to switch back to legacy controls and how to use new controls. | --- | +| .cycle | Provides solution for issues with navdata cycle warnings. | .oldcycle
.navdatawarning | | .ctd | Provides direction for addressing CTD issues. | .crash | | .deadzones | Display help with controller deadzones. | .dz | | .dx12 | Explaination for the current state of MSFS DirectX12 support. | --- | @@ -56,7 +57,6 @@ | .lnav | Explains the plane not following LNAV route due to user error. | --- | | .msfs | Provides links to MSFS support for sim issues. | --- | | .sbError | Provides solution to SimBrief reference error: Cannot Access Uninitialized. | .cau | -| .cycle | Provides solution for issues with navdata cycle warnings. | .oldcycle
.navdatawarning | ## Utilities diff --git a/src/commands/index.ts b/src/commands/index.ts index d142f59..75d219f 100644 --- a/src/commands/index.ts +++ b/src/commands/index.ts @@ -57,6 +57,7 @@ import { apu } from './support/apu'; import { cycleWarning } from './support/cycle'; import { temporarycommand } from './general/temporaryCommand'; import { temporarycommandedit } from './moderation/temporaryCommandEdit'; +import { cycleWarning } from './support/cycle'; const commands: CommandDefinition[] = [ when, @@ -113,9 +114,9 @@ const commands: CommandDefinition[] = [ conflict, website, apu, - cycleWarning, temporarycommand, temporarycommandedit, + cycleWarning, ]; const commandsObject: { [k: string]: CommandDefinition } = {};