diff --git a/src/IDABot.cpp b/src/IDABot.cpp
index 4e6e8bce37572a3e1eb091ad8d5fc2409b104169..edd114b81ff5dbeaaddf76cdba07c34dd5405b3f 100644
--- a/src/IDABot.cpp
+++ b/src/IDABot.cpp
@@ -487,9 +487,9 @@ void IDABot::OnGameStart()
 	m_map.onStart();
 	m_unitInfo.onStart();
 	m_bases.onStart();
-    // TODO: Maybe not include this for the students to use??
     m_buildingPlacer.onStart();
 
+    /*
     UnitType target { sc2::UNIT_TYPEID::TERRAN_FUSIONCORE, *this };
     std::vector<UnitType> needed = { target };
     build_order.clear();
@@ -517,6 +517,7 @@ void IDABot::OnGameStart()
 
     std::cout << "." << std::endl;
     std::cout << "Created build plan of " << build_order.size() << " steps." << std::endl;
+    */
 }
 
 void IDABot::OnStep()