Skip to content

Commit

Permalink
level cap is 150 now
Browse files Browse the repository at this point in the history
  • Loading branch information
Baviaan committed Jan 3, 2024
1 parent c05184a commit cdefd42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

__author__ = "Baviaan"
__license__ = "GNU General Public License v3.0"
__version__ = "6.5.0"
__version__ = "6.5.1"
__lotro__ = "38.1.1"
2 changes: 1 addition & 1 deletion source/treasure_cog.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def __init__(self, bot):
@app_commands.guild_only()
@app_commands.describe(chest=_("The name of the container to see the drop table for."), classes=_("The class for which to see the drop table."), level=_("The character level for which to see the drop table."), tracery=_("Whether the tracery drop table should be shown in full."))
@app_commands.autocomplete(chest=container_autocomplete)
async def loot_respond(self, interaction: discord.Interaction, chest: str, classes: Optional[Classes]=Classes.Captain, level: Optional[app_commands.Range[int, 1, 140]]=140, tracery: Optional[bool]=False):
async def loot_respond(self, interaction: discord.Interaction, chest: str, classes: Optional[Classes]=Classes.Captain, level: Optional[app_commands.Range[int, 1, 150]]=150, tracery: Optional[bool]=False):
if chest not in containers.keys():
await interaction.response.send_message(_("Unknown container."))
return
Expand Down

0 comments on commit cdefd42

Please sign in to comment.