Skip to content

Commit

Permalink
Fix: GET_SHIP interval
Browse files Browse the repository at this point in the history
  • Loading branch information
guoh064 committed Jun 26, 2024
1 parent 2f68d8f commit c36d5f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/combat/combat.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,11 +381,11 @@ def handle_get_ship(self, drop=None, skip_first_screenshot=True):
Returns:
bool:
"""
if not self.appear(GET_SHIP, interval=1):
if not self.appear(GET_SHIP, interval=5):
return False

if 'save' in self.config.DropRecord_NewShipRecord:
confirm_timer = Timer(5)
confirm_timer = Timer(3)
else:
confirm_timer = Timer(1)

Expand Down

0 comments on commit c36d5f0

Please sign in to comment.