Skip to content

Commit

Permalink
remove redundant @release_on("3.7")
Browse files Browse the repository at this point in the history
  • Loading branch information
DigiDuncan committed Nov 10, 2023
1 parent 63aa441 commit af8b271
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 11 deletions.
2 changes: 0 additions & 2 deletions sizebot/cogs/change.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ async def pushme(self, ctx):
else:
await ctx.invoke(self.bot.get_command("drinkme"))

@release_on("3.7")
@commands.command(
category = "change"
)
Expand Down Expand Up @@ -210,7 +209,6 @@ async def outgrow(self, ctx, *, obj: DigiObject = None):

await ctx.send(f"You outgrew {obj.article} **{obj.name}** *({obj.unitlength:,.3mu})* and are now **{userdata.height:,.3mu}** tall!")

@release_on("3.7")
@commands.command(
category = "change"
)
Expand Down
1 change: 0 additions & 1 deletion sizebot/cogs/fun.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ async def sbsay(self, ctx, *, message: str):
await ctx.message.delete(delay=0)
await ctx.send(message)

@release_on("3.7")
@commands.command(
aliases = ["tra"],
category = "fun"
Expand Down
1 change: 0 additions & 1 deletion sizebot/cogs/help.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,6 @@ async def usercount(self, ctx):
"""How many users are registered?"""
await ctx.send(f"There are **{userdb.count_users()}** users of SizeBot3½, with **{userdb.count_profiles()}** profiles created, <@!{ctx.message.author.id}>.")

@release_on("3.7")
@commands.command(
category = "help"
)
Expand Down
1 change: 0 additions & 1 deletion sizebot/cogs/multiplayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ async def clearbutton(self, ctx):
userdb.save(userdata)
await ctx.send("Your button is now disabled.")

@release_on("3.7")
@commands.command(
usage = "<amount> <victim> [thief]",
category = "multiplayer"
Expand Down
3 changes: 0 additions & 3 deletions sizebot/cogs/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ async def objstats(self, ctx, *, what: typing.Union[DigiObject, str]):

await ctx.send(embed = what.statsembed())

@release_on("3.7")
@commands.command(
category = "objects",
usage = "[@User]"
Expand Down Expand Up @@ -268,7 +267,6 @@ async def stackup(self, ctx, *, amount: typing.Optional[int] = None, who: typing
description = "\n".join(outstrings))
await ctx.send(embed = embed)

@release_on("3.7")
@commands.command(
category = "objects"
)
Expand Down Expand Up @@ -349,7 +347,6 @@ async def water(self, ctx, *, who: typing.Union[discord.Member, FakePlayer, SV]

await ctx.send(embed = embed)

@release_on("3.7")
@commands.command(
category = "objects"
)
Expand Down
2 changes: 0 additions & 2 deletions sizebot/cogs/pokemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ class PokemonCog(commands.Cog):
def __init__(self, bot):
self.bot = bot

@release_on("3.7")
@commands.command(
aliases = ["dex"],
category = "objects"
Expand All @@ -38,7 +37,6 @@ async def pokedex(self, ctx, pkmn: typing.Union[int, str] = None):
e = p.stats_embed()
await ctx.send(embed = e)

@release_on("3.7")
@commands.command(
aliases = ["pokecompare", "pokecomp", "lookatpoke"],
category = "objects"
Expand Down
1 change: 0 additions & 1 deletion sizebot/cogs/set.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ async def setrandomheight(self, ctx, minheight: SV, maxheight: SV):
await nickmanager.nick_update(ctx.author)
await showNextStep(ctx, userdata, completed=completed_registration)

@release_on("3.6.2")
@commands.command(
usage = "<minscale> <maxscale>",
category = "set"
Expand Down

0 comments on commit af8b271

Please sign in to comment.