Skip to content

Commit

Permalink
Merge pull request #114 from riazufila/exp-depends-count
Browse files Browse the repository at this point in the history
Changed user exp based on count
  • Loading branch information
riazufila authored May 9, 2021
2 parents 5088c04 + b7e1f6f commit 586e21c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/summon.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def calcResults(

# If the value is valid, then the statements here is executed
if (one_or_ten == 10 or one_or_ten == 1) and enough_balance:
db_ailie.update_user_exp(ctx.author.id, 100)
db_ailie.update_user_exp(ctx.author.id, one_or_ten * 10)
db_ailie.store_spent_gems(ctx.author.id, gems)
db_ailie.store_summon_count(ctx.author.id, one_or_ten)
# Variables used as a counter to check what is being summoned
Expand Down

0 comments on commit 586e21c

Please sign in to comment.