diff --git a/cogs/overwatch.py b/cogs/overwatch.py index 0b92db4..51b6b1b 100644 --- a/cogs/overwatch.py +++ b/cogs/overwatch.py @@ -60,7 +60,7 @@ class Overwatch: error_no = int(re.search("\d+",str(error)).group(0)) if error_no == 500: await self.bot.say("{} has not used the hero {} before!".format(user.name, hero.title())) - elif error_no == 400: + elif error_no == 404: await self.bot.say("{} is not an actual hero!".format(hero.title())) @ow.command(pass_context=True, name="add")