Skip to content

Commit

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

# Change upon version update
version = "1.5.0"
version = "1.5.1"

# Mimic loading animation
msg = await ctx.send(
Expand Down
2 changes: 2 additions & 0 deletions cogs/currency.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,7 @@ async def hourly(self, ctx):
if qualified_hourly:
gems = 500
db_ailie.store_gems(ctx.author.id, gems)
db_ailie.store_gained_gems(ctx.author.id, gems)
db_ailie.update_user_exp(ctx.author.id, 5)
await ctx.send(
f"Hourly gems claimed. You obtained {gems:,d} 💎, "
Expand Down Expand Up @@ -450,6 +451,7 @@ async def daily(self, ctx):
count = db_ailie.get_daily_count(ctx.author.id)
gems = 2500 + (200 * count)
db_ailie.store_gems(ctx.author.id, gems)
db_ailie.store_gained_gems(ctx.author.id, gems)
db_ailie.update_user_exp(ctx.author.id, 5)
await ctx.send(
f"Daily gems claimed for {count} time(s). "
Expand Down

0 comments on commit 55c8bac

Please sign in to comment.