58ae79f7 by Barry

More bug fixes

1 parent 21820359
No preview for this file type
...@@ -1424,11 +1424,12 @@ def check_arena(): ...@@ -1424,11 +1424,12 @@ def check_arena():
1424 ### END PANKRATION 1424 ### END PANKRATION
1425 def start_timer(client): 1425 def start_timer(client):
1426 needs_loot = True 1426 needs_loot = True
1427 time_to_ping = True 1427 time_to_ping = 6
1428 while not quitting: 1428 while not quitting:
1429 if time_to_ping: 1429 if time_to_ping >= 6:
1430 check_pings() 1430 check_pings()
1431 time_to_ping = not time_to_ping 1431 time_to_ping = 0
1432 time_to_ping += 1
1432 if not battle_in_progress: 1433 if not battle_in_progress:
1433 thread.start_new_thread(check_arena, ()) 1434 thread.start_new_thread(check_arena, ())
1434 1435
......