We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee43a9d commit 7716ad2Copy full SHA for 7716ad2
1 file changed
worlds/tetris_gb/client.py
@@ -127,9 +127,9 @@ async def game_watcher(self, ctx):
127
else:
128
self.check_countdown -= 1
129
if self.check_countdown <= 0:
130
- check = pending_checks[0]
131
- await ctx.send_msgs([{"cmd": "LocationChecks", "locations": [check]}])
132
- self.check_countdown = random.randint(1, 11)
+ checks = pending_checks[:max(1, len(pending_checks) // 10)]
+ await ctx.send_msgs([{"cmd": "LocationChecks", "locations": checks}])
+ self.check_countdown = random.randint(1, 3)
133
134
self.check_countdown = 0
135
0 commit comments