Browse Source

whoops cast int to str

master
EtherealEntity 3 years ago
parent
commit
2ee0911312
  1. 2
      main.py

2
main.py

@ -106,7 +106,7 @@ def tick(t):
grid[cp[0]][cp[1]].occupant = None #they move out of there
grid[man.curr[0]][man.curr[1]].occupant = i
if done:
print("Final Tick: " + t);
print("Final Tick: " + str(t));
exit()
def run():

Loading…
Cancel
Save