Skip to content

Commit

Permalink
Updated version info
Browse files Browse the repository at this point in the history
  • Loading branch information
riazufila committed May 13, 2021
1 parent c905822 commit 6a2acc6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cogs/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ async def version(self, ctx):
db_ailie.disconnect()

# Change upon version update
version = "1.7.2"
version = "1.7.3"

# Mimic loading animation
msg = await ctx.send(
Expand Down
2 changes: 1 addition & 1 deletion cogs/guardian.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def heroStatsLevel(self, stats, hero_level, user_level):
# Increase overall stats
for stat in stats:
if stat in ["attack"]:
increase = 20
increase = 10
stats[stat] = round(
stats[stat]
+ ((increase/100) * stats[stat] * (hero_level - 1))
Expand Down
8 changes: 4 additions & 4 deletions cogs/pvp.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def multiplyStatsWithLevels(self, stats, hero_level, user_level):
# Increase overall stats
for stat in stats:
if stat in ["attack"]:
increase = 20
increase = 10
stats[stat] = round(
stats[stat]
+ ((increase/100) * stats[stat] * (hero_level - 1))
Expand Down Expand Up @@ -478,9 +478,9 @@ def initExtraStats(self, hero_stats):

def initCurrentState(self):
return {
"weapon_skill_cd": 0,
"on_normal_skill_cd": 0,
"on_hit_skill_cd": 0,
"weapon_skill_cd": 5,
"on_normal_skill_cd": 5,
"on_hit_skill_cd": 5,
"evade_cd": 0,
"stunned": 0,
}
Expand Down

0 comments on commit 6a2acc6

Please sign in to comment.