Removed accidentally committed test code.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@5379 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2010-05-05 02:37:35 +00:00
parent 24ede9c8d8
commit b295fbbe15

View File

@ -977,7 +977,9 @@ int DefaultAIController::calcSteps()
steps += WIDTH_STEPS;
}
#endif
return steps + m_kart->getWorldKartId()%2==0 ? 0 : 5;
// The AI is driving significantly better with more steps, so for now
// add 5 additional steps.
return steps+5;
} // calcSteps
//-----------------------------------------------------------------------------