fix gras -> leaf

This commit is contained in:
Luke Robles 2024-01-25 23:23:14 -08:00
parent 68b69f1634
commit 6350248067

View File

@ -32,7 +32,7 @@ class PalWorld(commands.Cog):
for pal in x: for pal in x:
all_pals.append(pal.text) all_pals.append(pal.text)
return all_pals return set(all_pals)
@palworld.command( @palworld.command(
guild_ids=None, guild_ids=None,
@ -70,7 +70,7 @@ class PalWorld(commands.Cog):
"Earth": discord.Color.greyple(), "Earth": discord.Color.greyple(),
"Electricity": discord.Color.yellow(), "Electricity": discord.Color.yellow(),
"Fire": discord.Color.red(), "Fire": discord.Color.red(),
"Grass": discord.Color.green(), "Leaf": discord.Color.green(),
"Ice": discord.Color.blue(), "Ice": discord.Color.blue(),
"Normal": discord.Color.lighter_grey(), "Normal": discord.Color.lighter_grey(),
"Water": discord.Color.dark_blue(), "Water": discord.Color.dark_blue(),