Update dice.py

Added speed check to lookup command
This commit is contained in:
Cal Corum 2023-05-02 16:39:57 -05:00
parent 5787366dd5
commit b705a35911

View File

@ -1352,7 +1352,7 @@ class Dice(commands.Cog):
@commands.command(
name='lookups', help='Fielding chart lookup',
aliases=['si1', 'si2', 'do2', 'do3', 'tr3', 'f1', 'f2', 'f3', 'po', 'wp', 'x', 'fo', 'g1', 'g2', 'g3'])
aliases=['si1', 'si2', 'do2', 'do3', 'tr3', 'f1', 'f2', 'f3', 'po', 'wp', 'x', 'fo', 'g1', 'g2', 'g3', 'spd'])
async def fielding_chart_x(self, ctx):
this_command = ctx.message.content.split(" ")[0][1:]
chart_data = get_xchart_data(this_command)