Skip to content

Commit

Permalink
Fix str bug
Browse files Browse the repository at this point in the history
  • Loading branch information
taslimisina committed Feb 14, 2020
1 parent 11d2b9b commit d6e83fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AI.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def pick(self, world):

# it is called every turn for doing process during the game
def turn(self, world):
print("turn started: " + world.get_current_turn())
print("turn started: " + str(world.get_current_turn()))

myself = world.get_me()
max_ap = world.game_constants.max_ap
Expand Down

0 comments on commit d6e83fb

Please sign in to comment.