Update to new version
This commit is contained in:
parent
776a7bdf77
commit
f4587b307e
|
@ -7,5 +7,5 @@ class Ai(Player):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(Ai, self).__init__()
|
super(Ai, self).__init__()
|
||||||
|
|
||||||
def action(self, game):
|
def action(self, map, id):
|
||||||
return Direction.RIGHT
|
return Direction.RIGHT
|
||||||
|
|
|
@ -4,5 +4,5 @@ class Ai(Player):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(Ai, self).__init__()
|
super(Ai, self).__init__()
|
||||||
|
|
||||||
def action(self, game):
|
def action(self, map, id):
|
||||||
return Direction.LEFT
|
return Direction.LEFT
|
||||||
|
|
Loading…
Reference in New Issue