From e7f1e8e4d1a49a582dc28f06b58b987c3d5a72c9 Mon Sep 17 00:00:00 2001 From: Lisa Greene <glisa825@gmail.com> Date: Tue, 10 Mar 2020 00:48:08 +0100 Subject: [PATCH] > and < are different --- 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 ecc7c4ff34..9da016b6fd 100644 --- a/game/modules/tome/data/talents/psionic/absorption.lua +++ b/game/modules/tome/data/talents/psionic/absorption.lua @@ -138,7 +138,7 @@ newTalent{ type = {"psionic/absorption", 1}, require = psi_cun_req1, rnd_boss_restrict = function(self, t, data) -- Flat damage reduction can be obnoxious early game - return data.level < 15 + return data.level > 15 end, mode = "sustained", no_sustain_autoreset = true, points = 5, @@ -201,7 +201,7 @@ newTalent{ type = {"psionic/absorption", 1}, require = psi_cun_req2, rnd_boss_restrict = function(self, t, data) -- Flat damage reduction can be obnoxious early game - return data.level < 15 + return data.level > 15 end, mode = "sustained", no_sustain_autoreset = true, points = 5, @@ -266,7 +266,7 @@ newTalent{ type = {"psionic/absorption", 1}, require = psi_cun_req3, rnd_boss_restrict = function(self, t, data) -- Flat damage reduction can be obnoxious early game - return data.level < 15 + return data.level > 15 end, mode = "sustained", no_sustain_autoreset = true, points = 5, -- GitLab