diff --git a/game/modules/tome/data/talents/gifts/call.lua b/game/modules/tome/data/talents/gifts/call.lua
index b39089dbbf95950c8877b5c46346538229206a7c..51f099a812fe3ee690c58df7ea959596dbf1d3ec 100644
--- a/game/modules/tome/data/talents/gifts/call.lua
+++ b/game/modules/tome/data/talents/gifts/call.lua
@@ -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,
 }