Skip to content

Commit

Permalink
변경한 API의 반응속도가 빠르므로 loop 횟수 감소
Browse files Browse the repository at this point in the history
  • Loading branch information
item4 committed Sep 14, 2024
1 parent e258374 commit dc791e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yui/apps/info/d2tz/commons.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ async def wait_next_d2r_terror_zone_info(bot: Bot, channel):
random.randint(55 + loop_count * 2, 111 + loop_count * 2) / 100,
)
loop_count += 1
if loop_count > 500:
if loop_count > 50:
return

now_dt = now()
Expand Down

0 comments on commit dc791e0

Please sign in to comment.