Skip to content

Commit f3e2c03

Browse files
committed
Resolves #313 (for real)
1 parent 015f049 commit f3e2c03

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

penis/penis.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ async def penis(self, ctx, *users: discord.Member):
3333

3434
for user in users:
3535
random.seed(user.id)
36-
dongs[user] = ("8{}D".format("=" * random.randint(0, DONG_DISTRIBUTION_CONST)),
37-
VIP_DONG_CONST)[await is_mod_or_superior(ctx.bot, user)]
36+
dongs[user] = "8{}D".format("=" * (random.randint(0, DONG_DISTRIBUTION_CONST), VIP_DONG_CONST)[await is_mod_or_superior(ctx.bot, user)])
3837

3938
random.setstate(state)
4039
dongs = sorted(dongs.items(), key=lambda x: x[1])

0 commit comments

Comments
 (0)