diff --git a/python-api-src/library.cpp b/python-api-src/library.cpp
index f3af58bbba43347eedf596fed25e35c6a552aead..7d883378fd8870c1e0a9cb7c65eb905332e69eba 100644
--- a/python-api-src/library.cpp
+++ b/python-api-src/library.cpp
@@ -75,6 +75,7 @@ PYBIND11_MODULE(library, m)
         .def_property_readonly("map_tools", &IDABot::Map)
         .def_property_readonly("building_placer", &IDABot::GetBuildingPlacer)
         .def_property_readonly("start_location", &IDABot::GetStartLocation, "CCPosition representing the start location")
+		.def_property_readonly("start_locations", &IDABot::GetStartLocations, "CCPosition representing the start locations")
         .def_property_readonly("minerals", &IDABot::GetMinerals, "How much minerals we currently have")
         .def_property_readonly("current_supply", &IDABot::GetCurrentSupply, "How much supply we are currently using")
         .def_property_readonly("max_supply", &IDABot::GetMaxSupply, "How much supply we can currently use")