Skip to content
Snippets Groups Projects
Commit 93b8c9d3 authored by DarkGod's avatar DarkGod
Browse files

fix nature's balance

parent 5eafaeee
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,7 @@ newTalent{
getTalentCount = function(self, t) return math.floor(self:combatTalentScale(t, 2, 7, "log")) end,
getMaxLevel = function(self, t) return self:getTalentLevel(t) end,
action = function(self, t)
local nb = t.nbTalents(self, t)
local nb = t.getTalentCount(self, t)
local maxlev = t.getMaxLevel(self, t)
local tids = {}
for tid, _ in pairs(self.talents_cd) do
......@@ -165,7 +165,7 @@ newTalent{
end,
info = function(self, t)
return ([[Your deep link with Nature allows you to reset the cooldown of %d of your wild gifts of tier %d or less.]]):
format(t.nbTalents(self, t), t.getMaxLevel(self, t))
format(t.getTalentCount(self, t), t.getMaxLevel(self, t))
end,
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment