Skip to content
This repository has been archived by the owner on Mar 11, 2022. It is now read-only.

Commit

Permalink
Update auto_fight.py
Browse files Browse the repository at this point in the history
  • Loading branch information
e-sim-python authored May 23, 2021
1 parent 10a3ae1 commit 5270f49
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eSim/Fight/auto_fight.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import asyncio
from random import randint
import traceback

import __init__ # For IDLE
from Basic.fly import fly
Expand Down Expand Up @@ -48,7 +49,8 @@ async def auto_fight(server, battle_id="", side="attacker", wep="0", food="", gi
await random_sleep(restores_left)

except Exception as error:
print("error:", error)
print("------ERROR------\n")
traceback.print_exc()
await random_sleep(restores_left)


Expand Down

0 comments on commit 5270f49

Please sign in to comment.