Removed unnecessary debug print.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@5064 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2010-03-24 23:55:04 +00:00
parent 939caf1981
commit 5f69e47451

View File

@ -175,7 +175,6 @@ Kart *World::createKart(const std::string &kart_ident, int index,
switch(race_manager->getKartType(index))
{
case RaceManager::KT_PLAYER:
std::cout << "===== World : creating player controller for kart #" << index << " which has local_player_id " << local_player_id << " ===========\n";
controller = new PlayerController(new_kart,
StateManager::get()->getActivePlayer(local_player_id),
local_player_id);
@ -188,8 +187,6 @@ Kart *World::createKart(const std::string &kart_ident, int index,
//m_num_players++;
//break;
case RaceManager::KT_AI:
std::cout << "===== World : creating AI controller for #" << index << "===========\n";
controller = loadAIController(new_kart);
break;
case RaceManager::KT_GHOST: