58ae79f7 by Barry

More bug fixes

1 parent 21820359
No preview for this file type
......@@ -1424,11 +1424,12 @@ def check_arena():
### END PANKRATION
def start_timer(client):
needs_loot = True
time_to_ping = True
time_to_ping = 6
while not quitting:
if time_to_ping:
if time_to_ping >= 6:
check_pings()
time_to_ping = not time_to_ping
time_to_ping = 0
time_to_ping += 1
if not battle_in_progress:
thread.start_new_thread(check_arena, ())
......