From bcdbbc6161667e6b2349147f8e9990656d2b8d32 Mon Sep 17 00:00:00 2001 From: Philippe Dellaert Date: Mon, 4 Sep 2023 14:03:51 -0700 Subject: [PATCH] Updating language --- src/commands/aircraft/takeoffPerf.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/commands/aircraft/takeoffPerf.ts b/src/commands/aircraft/takeoffPerf.ts index a7507528..ba8666ab 100644 --- a/src/commands/aircraft/takeoffPerf.ts +++ b/src/commands/aircraft/takeoffPerf.ts @@ -1,14 +1,10 @@ import { MessageCommandDefinition } from '../../lib/command'; import { CommandCategory } from '../../constants'; -import { makeEmbed, makeLines } from '../../lib/embed'; +import { makeEmbed } from '../../lib/embed'; const takeoffPerfEmbed = makeEmbed({ title: 'FlyByWire A32NX | Where is the takeoff calculator?', - description: makeLines(['Currently, Airbus does not publicly release takeoff performance data for the A320neo, which means it is difficult to create an accurate takeoff calculator.', - '', - 'While there are many online calculators available, these often use A320ceo data, and are not accurate.', - '', - 'A takeoff calculator for the A32NX is under development.']), + description: 'A takeoff calculator for the A32NX is currently under development.', }); export const takeoffPerf: MessageCommandDefinition = {