diff --git a/src/tracks/track.cpp b/src/tracks/track.cpp index 26c5b4488..db1c4e30a 100644 --- a/src/tracks/track.cpp +++ b/src/tracks/track.cpp @@ -695,6 +695,12 @@ void Track::loadTrackModel() int bits = node->getXYZ(&xyz); // Height is needed if bit 2 (for z) is not set itemCommand(xyz, type, /* need_height */ !XMLNode::hasZ(bits) ); + } + else if (name=="start") + { + core::vector3df xyz(0,0,0); + node->getXYZ(&xyz); + m_start_positions.push_back(Vec3(xyz.X, xyz.Y, xyz.Z)); } else if(name=="animations") {