From 5e5294c93685f6f0bc16bee415cd124b395dec8a Mon Sep 17 00:00:00 2001 From: BenW Date: Thu, 8 Aug 2024 14:06:54 +0100 Subject: [PATCH] fix: add aliases back to weather command (#525) --- .github/CHANGELOG.md | 1 + src/commands/aircraft/weather.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index a7c588b2..4ee53b49 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -2,6 +2,7 @@ Update _ August 2024 +- fix: add aliases back to weather command (08/08/2024) - feat: New .APModes command (08/08/2024) Update _ July 2024 diff --git a/src/commands/aircraft/weather.ts b/src/commands/aircraft/weather.ts index 987050a8..a161924a 100644 --- a/src/commands/aircraft/weather.ts +++ b/src/commands/aircraft/weather.ts @@ -14,7 +14,7 @@ const weatherEmbed = makeEmbed({ }); export const weather: MessageCommandDefinition = { - name: ['weather', 'wx'], + name: ['weather', 'wx', 'wxr', 'terrain', 'terr', 'terronnd'], description: 'Explains the current state of the weather and terrain radars', category: CommandCategory.AIRCRAFT, genericEmbed: weatherEmbed,