We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a40458 commit 6ad18feCopy full SHA for 6ad18fe
1 file changed
booleans-and-conditionals/studio/data-variables-conditionals.js
@@ -40,7 +40,7 @@ else if(totalMassKg > 850000)
40
41
// add logic below to verify the fuel temperature is within the appropriate range of -150 and -300
42
43
-else if(fuelTempCelsius > -150 || fuelTempCelsius <-300)
+else if(fuelTempCelsius > maximumFuelTemp || fuelTempCelsius < minimumFuelTemp)
44
{
45
preparedForLiftOff = false;
46
}
0 commit comments