]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIMultiplayer.cxx
Support helipad names in the --runway startup option
[flightgear.git] / src / AIModel / AIMultiplayer.cxx
index 5a13a4ff3d02f251e115e869031216a37aa14d3e..30843b7c48b3643b3a16bc9705d0035e0fdd4cac 100644 (file)
@@ -80,9 +80,9 @@ void FGAIMultiplayer::bind() {
 
     tie("controls/invisible",
         SGRawValuePointer<bool>(&invisible));
-       _uBodyNode = props->getNode("velocities/ubody-fps", true);
-       _vBodyNode = props->getNode("velocities/vbody-fps", true);
-       _wBodyNode = props->getNode("velocities/wbody-fps", true);
+       _uBodyNode = props->getNode("velocities/uBody-fps", true);
+       _vBodyNode = props->getNode("velocities/vBody-fps", true);
+       _wBodyNode = props->getNode("velocities/wBody-fps", true);
        
 #define AIMPROProp(type, name) \
 SGRawValueMethods<FGAIMultiplayer, type>(*this, &FGAIMultiplayer::get##name)