diff options
| -rw-r--r-- | main.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -77,6 +77,7 @@ async def on_command_error(error, ctx): @bot.command() async def vainsocial(region: str, name: str): """Retrieves a player's stats.""" + region = region.lower() if region not in ["na", "eu", "sg", "ea", "sa"]: await bot.say("That region is not supported.") return |
