Skip to content

Commit

Permalink
fix quake?
Browse files Browse the repository at this point in the history
  • Loading branch information
DigiDuncan committed Dec 2, 2023
1 parent 52fad63 commit b039223
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sizebot/cogs/quake.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, bot):
self.bot = bot

@commands.command(aliases = ["quake"],
usage = "[user/height]",
usage = "[type] [user/height]",
category = "stats")
async def earthquake(self, ctx, quake_type: typing.Optional[QuakeType] = "step", user: typing.Union[discord.Member, FakePlayer, SV] = None):
"""See what quakes would be caused by your steps."""
Expand All @@ -40,7 +40,7 @@ async def earthquake(self, ctx, quake_type: typing.Optional[QuakeType] = "step",
elif quake_type == "poke":
verb = "poking"
joules = poke_joules(userdata)
elif quake_type == "breath":
elif quake_type == "breath" or quake_type == "breathe":
verb = "breathing"
joules = breath_joules(userdata)
else:
Expand Down

0 comments on commit b039223

Please sign in to comment.