Update to new version

This commit is contained in:
Thomas Forgione 2019-03-26 11:30:23 +01:00
parent 776a7bdf77
commit f4587b307e
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
2 changed files with 2 additions and 2 deletions

View File

@ -7,5 +7,5 @@ class Ai(Player):
def __init__(self):
super(Ai, self).__init__()
def action(self, game):
def action(self, map, id):
return Direction.RIGHT

View File

@ -4,5 +4,5 @@ class Ai(Player):
def __init__(self):
super(Ai, self).__init__()
def action(self, game):
def action(self, map, id):
return Direction.LEFT