Commit ea53640b authored by Matthew Hausknecht's avatar Matthew Hausknecht

Fixed bug in options

parent b387747e
...@@ -57,7 +57,7 @@ class Agent2d(Team): ...@@ -57,7 +57,7 @@ class Agent2d(Team):
def __init__(self, name, baseDir, libDir, binaryName, logDir, record, def __init__(self, name, baseDir, libDir, binaryName, logDir, record,
host='localhost', port=6000): host='localhost', port=6000):
binaryPath = os.path.join(baseDir, binaryName) binaryPath = os.path.join(baseDir, binaryName)
options = '-t %s -p %i --config_dir %s/config/formations-dt --log_dir %s'\ options = '-t %s -p %i --config_dir %s/config/formations-dt --log_dir %s '\
'--player-config %s/config/player.conf'\ '--player-config %s/config/player.conf'\
% (name, port, baseDir, logDir, baseDir) % (name, port, baseDir, logDir, baseDir)
if record: if record:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment