Skip to content

Commit 6ad18fe

Browse files
committed
tune-up
1 parent 8a40458 commit 6ad18fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

booleans-and-conditionals/studio/data-variables-conditionals.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ else if(totalMassKg > 850000)
4040

4141
// add logic below to verify the fuel temperature is within the appropriate range of -150 and -300
4242

43-
else if(fuelTempCelsius > -150 || fuelTempCelsius <-300)
43+
else if(fuelTempCelsius > maximumFuelTemp || fuelTempCelsius < minimumFuelTemp)
4444
{
4545
preparedForLiftOff = false;
4646
}

0 commit comments

Comments
 (0)