Commit e1410fc5 authored by drallensmith's avatar drallensmith

Merge branch 'master' into cmake_work - less problematic than rebase

parents 9013d490 1f507b72
......@@ -36,7 +36,7 @@ def main():
# Quit if the server goes down
if status == SERVER_DOWN:
hfo.act(QUIT)
break
exit()
if __name__ == '__main__':
main()
......@@ -29,7 +29,7 @@ def main():
# Quit if the server goes down
if status == SERVER_DOWN:
hfo.act(QUIT)
break
exit()
if __name__ == '__main__':
main()
\ No newline at end of file
main()
......@@ -29,7 +29,7 @@ def main():
# Quit if the server goes down
if status == SERVER_DOWN:
hfo.act(QUIT)
break
exit()
if __name__ == '__main__':
main()
......@@ -56,7 +56,7 @@ def get_action(state,hfo_env,num_teammates):
hfo_env.act(DRIBBLE)
return
# If nothing can be done pass
hfo_env.act(PASS)
hfo_env.act(PASS) # doesn't this require a target teammate?
def main():
......
......@@ -32,7 +32,7 @@ def main():
# Quit if the server goes down
if status == SERVER_DOWN:
hfo.act(QUIT)
break
exit()
if __name__ == '__main__':
main()
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