Code: Select all
game/modules/tome/data/talents/psionic/psionic.lua | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/modules/tome/data/talents/psionic/psionic.lua b/game/modules/tome/data/talents/psionic/psionic.lua
index dd83eae..4119be0 100644
--- a/game/modules/tome/data/talents/psionic/psionic.lua
+++ b/game/modules/tome/data/talents/psionic/psionic.lua
@@ -141,7 +141,7 @@ function getGemLevel(self)
local gem_level = 0
if self:getInven("PSIONIC_FOCUS") then
local tk_item = self:getInven("PSIONIC_FOCUS")[1]
- if tk_item and (tk_item.type == "gem") or (tk_item.subtype == "mindstar") then
+ if tk_item and ((tk_item.type == "gem") or (tk_item.subtype == "mindstar")) then
gem_level = tk_item.material_level or 5
end
end