Skip to content

Commit

Permalink
typo :p
Browse files Browse the repository at this point in the history
now its actually adventure 51 instead of 21
  • Loading branch information
starspritechippy committed Sep 16, 2019
1 parent 7b2904b commit edfef1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/adventure/__init__.py
Expand Up @@ -91,7 +91,7 @@ async def adventures(self, ctx):
async def adventure(self, ctx, dungeonnumber: AreaFiftyOneInt(1, 20)):
_("""Sends your character on an adventure.""")
if dungeonnumber > int(rpgtools.xptolevel(ctx.character_data["xp"])):
if dungeonnumber != 21: # bybass level req. for the event
if dungeonnumber != 51: # bybass level req. for the event
return await ctx.send(
_("You must be on level **{level}** to do this adventure.").format(
level=dungeonnumber
Expand Down

0 comments on commit edfef1f

Please sign in to comment.