From b03922317acd591b620d90fd08ed89599cfa4151 Mon Sep 17 00:00:00 2001 From: DigiDuncan Date: Sat, 2 Dec 2023 06:39:55 -0500 Subject: [PATCH] fix quake? --- sizebot/cogs/quake.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sizebot/cogs/quake.py b/sizebot/cogs/quake.py index 05fafc09..3083e8f7 100644 --- a/sizebot/cogs/quake.py +++ b/sizebot/cogs/quake.py @@ -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.""" @@ -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: