Skip to content
Snippets Groups Projects
Commit d5a2f7c7 authored by Rojikku98's avatar Rojikku98
Browse files

Removed a print line

parent 42a13a56
No related branches found
No related tags found
1 merge request!6Replays
......@@ -28,8 +28,8 @@ PYBIND11_MODULE(library, m)
.def("update", &sc2::Coordinator::Update)
.def("set_real_time", &sc2::Coordinator::SetRealtime)
.def("load_replay_list",&sc2::Coordinator::SetReplayPath, "replay_path"_a)
.def("add_replay_observer",&sc2::Coordinator::AddReplayObserver, "replay_observer"_a)
;
.def("add_replay_observer",&sc2::Coordinator::AddReplayObserver, "replay_observer"_a);
py::class_<sc2::ReplayObserver, PyReplayObserver>(m, "ReplayObserver")
.def(py::init())
.def("on_game_start", &sc2::ReplayObserver::OnGameStart)
......
......@@ -22,7 +22,6 @@ public:
Coordinator(std::string path) : sc2::Coordinator()
{
std::cout << path << std::endl;
std::vector<std::string> arguments = { "pycommandcenter", "-e", path };
CustomLoadSettings(arguments);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment