diff --git a/.gitignore b/.gitignore
index 6ad85e2d5dd2e3d2d11462f6a2e33e5a03ea77f1..47f6322a7c8c3633fd8f6f20899558856b2fcbea 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,6 @@
 # Compiled Python code
 __pycache__/
-# You should download the library file, not store it in version control
+# You should download the commandcenter file, not store it in version control
 *.pyd
 *.pyc
 
diff --git a/myagent/extra.py b/myagent/extra.py
index 2dd568c5ebdb0d427797ff95a6bce0bf0076b931..b42e6a3c7062299e175c4fa38d6a9e8b5404ab83 100644
--- a/myagent/extra.py
+++ b/myagent/extra.py
@@ -1,4 +1,4 @@
-from library import IDABot, Unit, UnitType, TypeData, Point2DI, PLAYER_SELF
+from commandcenter import IDABot, Unit, UnitType, TypeData, Point2DI, PLAYER_SELF
 from typing import Optional
 
 
diff --git a/myagent/main.py b/myagent/main.py
index baf9dc905813f15ad3d6b26046315fe09ed3a472..624c4f63bdc3c46cd73e55e8b1e6ee82f7ac3abf 100644
--- a/myagent/main.py
+++ b/myagent/main.py
@@ -1,5 +1,5 @@
 from typing import Optional
-from library import *
+from commandcenter import *
 from myagent.extra import *
 
 
diff --git a/start.py b/start.py
index 1a418fc911f20e6a67df8678a9dfca8404c1a336..132ca8e429311ee0184e4310384147e89d48cae9 100644
--- a/start.py
+++ b/start.py
@@ -1,6 +1,6 @@
 import os
 
-from library import (
+from commandcenter import (
         Coordinator, Difficulty, Race,
         create_participants, create_computer,
 )
@@ -9,7 +9,7 @@ from myagent.main import MyAgent
 
 def main():
     fight_against_agent = False
-    coordinator = Coordinator(r"D:\StarCraft II\Versions\Base81009\SC2_x64.exe")
+    coordinator = Coordinator(r"D:\StarCraft II\Versions\Base75025\SC2_x64.exe")
 
 
     bot1 = MyAgent()
diff --git a/visualdebugger/README.md b/visualdebugger/README.md
index 294b42ceb0acd231d13fb887f3ef461d7bbc7b41..db99e3865769772ab433a49d338ff419350394bf 100644
--- a/visualdebugger/README.md
+++ b/visualdebugger/README.md
@@ -11,7 +11,7 @@ types of debuggers simultaneous.
 In the example below you can see how you get started with the visual debugger. In this example a debugger for a heatmap is set as the debugger.
 
 ```python
-from library import *
+from commandcenter import *
 import numpy as np
 import visualdebugger.heat_map_debugger
 import visualdebugger.flow_debugger