From dc43886f5052eb6d27076f57fbde232fc5eb766a Mon Sep 17 00:00:00 2001
From: Bunny <glisa825@gmail.com>
Date: Wed, 4 Nov 2020 01:34:19 -0500
Subject: [PATCH] Minimize unnecessary use of raw talent level

---
 game/modules/tome/data/talents/psionic/absorption.lua | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/game/modules/tome/data/talents/psionic/absorption.lua b/game/modules/tome/data/talents/psionic/absorption.lua
index e371625027..9420d5856a 100644
--- a/game/modules/tome/data/talents/psionic/absorption.lua
+++ b/game/modules/tome/data/talents/psionic/absorption.lua
@@ -143,7 +143,7 @@ newTalent{
 	mode = "sustained", no_sustain_autoreset = true,
 	points = 5,
 	sustain_psi = 10,
-	cooldown = function(self, t) return math.ceil(self:combatTalentLimit(t, 5, 14, 8, true)) end, --Limit > 5
+	cooldown = function(self, t) return math.ceil(self:combatTalentLimit(t, 5, 14, 8)) end, --Limit > 5
 	range = 0,
 	no_energy = true,
 	tactical = { DEFEND = 2 },
@@ -206,7 +206,7 @@ newTalent{
 	mode = "sustained", no_sustain_autoreset = true,
 	points = 5,
 	sustain_psi = 10,
-	cooldown = function(self, t) return math.ceil(self:combatTalentLimit(t, 5, 14, 8, true)) end, --Limit > 5
+	cooldown = function(self, t) return math.ceil(self:combatTalentLimit(t, 5, 14, 8)) end, --Limit > 5
 	range = 0,
 	no_energy = true,
 	tactical = { DEFEND = 2 },
@@ -271,7 +271,7 @@ newTalent{
 	mode = "sustained", no_sustain_autoreset = true,
 	points = 5,
 	sustain_psi = 10,
-	cooldown = function(self, t) return math.ceil(self:combatTalentLimit(t, 5, 14, 8, true)) end, --Limit > 5
+	cooldown = function(self, t) return math.ceil(self:combatTalentLimit(t, 5, 14, 8)) end, --Limit > 5
 	range = 0,
 	no_energy = true,
 	tactical = { DEFEND = 2 },
-- 
GitLab