Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions cogs/memes.py
Original file line number Diff line number Diff line change
Expand Up @@ -812,14 +812,18 @@ async def rotate(self, ctx: KurisuContext, u: discord.Member, degrees: int = Non

await self._meme(ctx, msg, True)

@commands.command(hidden=True, aliases=["degay", "ungay", "minusgay"])
@commands.command(hidden=True, aliases=["degay", "ungay", "minusgay", "degender"])
async def removegay(self, ctx: KurisuContext, u: discord.Member):
"""Degays a user"""

if u.id == 250051871962562562:
await ctx.send("Can't. Too gay. Try someone else.")
return

if u.id == 328277052992258049: # nio
await ctx.send("Not applicable.")
return

removegay_list = [f"{u.mention} has been degayed.",
f"{u.mention} is now straight.",
f"{u.mention} has lost their gay privileges.",
Expand All @@ -829,9 +833,14 @@ async def removegay(self, ctx: KurisuContext, u: discord.Member):
f"{u.mention} has been downgraded from 'yass queen' to 'yeah'."]
await self._meme(ctx, random.choice(removegay_list), True)

@commands.command(hidden=True, aliases=["regay", "plusgay"])
@commands.command(hidden=True, aliases=["regay", "plusgay", "gender", "regender"])
async def gay(self, ctx: KurisuContext, u: discord.Member):
"""Gays a user"""

if u.id == 328277052992258049: # nio
await ctx.send("Not applicable.")
return

gay_list = [f"{u.mention} has been gayed.",
f"{u.mention} is now gay.",
f"{u.mention} has received some gay privileges.",
Expand Down