diff --git a/src/commands/aircraft/flex-temp.ts b/src/commands/aircraft/flex-temp.ts index 269c7aaf..4252f7a8 100644 --- a/src/commands/aircraft/flex-temp.ts +++ b/src/commands/aircraft/flex-temp.ts @@ -1,10 +1,14 @@ import { MessageCommandDefinition } from '../../lib/command'; import { CommandCategory } from '../../constants'; -import { makeEmbed } from '../../lib/embed'; +import { makeEmbed, makeLines } from '../../lib/embed'; const flexEmbed = makeEmbed({ title: 'FlyByWire A32NX | Flex Temp', - description: 'A320neo takeoff performance data is not readily available. To set your Flex Temp in the simulator please see the [Flex Temp Section](https://docs.flybywiresim.com/pilots-corner/beginner-guide/preparing-mcdu/#flex-temp) in our MCDU guide.', + description: makeLines([ + 'The Flex Temp can be calculated in the **Developer** version using the Takeoff Performance Calculator in the EFB. Check out the [Documentation](https://docs.flybywiresim.com/flypad-performance/) for more information.', + '', + 'For the **Stable** version, see the [Flex Temp Section](https://docs.flybywiresim.com/pilots-corner/beginner-guide/preparing-mcdu/#flex-temp) in our MCDU guide.', + ]), }); export const flexTemp: MessageCommandDefinition = { diff --git a/src/commands/aircraft/takeoffPerf.ts b/src/commands/aircraft/takeoffPerf.ts index ba8666ab..3b560839 100644 --- a/src/commands/aircraft/takeoffPerf.ts +++ b/src/commands/aircraft/takeoffPerf.ts @@ -1,10 +1,16 @@ import { MessageCommandDefinition } from '../../lib/command'; import { CommandCategory } from '../../constants'; -import { makeEmbed } from '../../lib/embed'; +import { makeEmbed, makeLines } from '../../lib/embed'; const takeoffPerfEmbed = makeEmbed({ - title: 'FlyByWire A32NX | Where is the takeoff calculator?', - description: 'A takeoff calculator for the A32NX is currently under development.', + title: 'FlyByWire A32NX | Takeoff Performance Calculator', + description: makeLines([ + 'A Takeoff Performance Calculator is available on the **Developer** version of the A32NX. For more information, check out the [Takeoff Performance Calculator documentation](https://docs.flybywiresim.com/flypad-performance/).', + '', + 'For the **Stable** version, see the [V-Speeds Section](https://docs.flybywiresim.com/pilots-corner/beginner-guide/preparing-mcdu/#v-speeds) in our MCDU guide.', + '', + '**Note:** The functionality where the LSK next to the V1, VR and V2 speeds can be used to automatically calculate them in the MCDU PERF page has been removed in the Developer version. Use the new Takeoff Performance Calculator instead.', + ]), }); export const takeoffPerf: MessageCommandDefinition = {