Skip to content

Commit

Permalink
[BattleRoyale] make game more lengthy
Browse files Browse the repository at this point in the history
  • Loading branch information
japandotorg committed Oct 15, 2023
1 parent 9b36dce commit 3b7c68f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion battleroyale/game.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async def start(
prompts += "\n" + random.choice(PROMPTS).format(
killer=f"**{killer.display_name}**", killed=f"**{killed.display_name}**"
)
if len(self.players) <= 10 or len(self.remaining_players) <= 5 or i >= 5:
if len(self.players) <= 30 or len(self.remaining_players) <= 2 or i >= 2:
start = time.time()
image: discord.File = await self.cog.generate_image(
user_1=killer, user_2=killed, to_file=True
Expand Down

0 comments on commit 3b7c68f

Please sign in to comment.