Skip to content

Commit

Permalink
Merge pull request #140 from riazufila/release-v1.8.1
Browse files Browse the repository at this point in the history
Release v1.8.1
  • Loading branch information
riazufila authored May 16, 2021
2 parents 407efaf + 65647bf commit 9b1a11c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cogs/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ async def version(self, ctx):
db_ailie.disconnect()

# Change upon version update
version = "1.8.0"
version = "1.8.1"

# Mimic loading animation
msg = await ctx.send(
Expand Down
4 changes: 2 additions & 2 deletions cogs/pve.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self, bot):
description="Train heroes to gain EXP.",
aliases=["tra"],
)
@commands.cooldown(1, 30, commands.BucketType.user)
@commands.cooldown(1, 45, commands.BucketType.user)
async def train(self, ctx, *hero):
# Check if user is initialized first
db_ailie = Database()
Expand Down Expand Up @@ -82,7 +82,7 @@ def confirm_training(message):
"message", check=confirm_training, timeout=30
)

exp = random.randint(1, 10)
exp = random.randint(40, 60)

if msg.content == training_typing_picked:
reply = [
Expand Down

0 comments on commit 9b1a11c

Please sign in to comment.