Now how did I manage to forget that.

This commit is contained in:
Ben "root" Anderson
2014-01-14 21:15:58 -06:00
parent 1cca4aa309
commit fdbedaee06
+1 -1
View File
@@ -633,7 +633,7 @@ bool Course::GetTrailUnsorted( StepsType st, CourseDifficulty cd, Trail &trail )
/* If the course difficulty never actually changed anything, then this difficulty
* is equivalent to Difficulty_Medium; it doesn't exist. */
return bCourseDifficultyIsSignificant && trail.m_vEntries.size();
return bCourseDifficultyIsSignificant && trail.m_vEntries.size() > 0;
}
void Course::GetTrails( vector<Trail*> &AddTo, StepsType st ) const