]> git.mxchange.org Git - flightgear.git/blobdiff - src/Systems/vacuum.cxx
Add a *really* crude model of ITT, Oil Temp, and Oil Pressure. This
[flightgear.git] / src / Systems / vacuum.cxx
index bede8ed77cf716288527e2dd8e10118f88c93cd6..256e6efaff80c07a9290f13df02126a39fe84861 100644 (file)
@@ -29,9 +29,9 @@ VacuumSystem::VacuumSystem ( SGPropertyNode *node )
         } else if ( cname == "scale" ) {
             scale = child->getDoubleValue();
         } else {
-            SG_LOG( SG_AUTOPILOT, SG_WARN, "Error in vacuum config logic" );
+            SG_LOG( SG_SYSTEMS, SG_WARN, "Error in vacuum config logic" );
             if ( name.length() ) {
-                SG_LOG( SG_AUTOPILOT, SG_WARN, "Section = " << name );
+                SG_LOG( SG_SYSTEMS, SG_WARN, "Section = " << name );
             }
         }
     }
@@ -60,8 +60,6 @@ VacuumSystem::init()
     _rpm_node = fgGetNode(rpm.c_str(), true);
     _pressure_node = fgGetNode("/environment/pressure-inhg", true);
     _suction_node = node->getChild("suction-inhg", 0, true);
-
-    _serviceable_node->setBoolValue(true);
 }
 
 void