diff --git a/game/modules/tome/class/Object.lua b/game/modules/tome/class/Object.lua
index 7eca4a63a2af04d25b2e96a3acd9d3623f565d55..4873cec93061eb708806438510088ee0766fd8de 100644
--- a/game/modules/tome/class/Object.lua
+++ b/game/modules/tome/class/Object.lua
@@ -1046,17 +1046,19 @@ function _M:getTextualDesc(compare_with, use_actor)
 			desc:add(("Talent master%s: "):format(any_mastery > 1 and "ies" or "y"))
 			for ttn, ttid in pairs(masteries) do
 				local tt = Talents.talents_types_def[ttn]
-				local cat = tt.type:gsub("/.*", "")
-				local name = cat:capitalize().." / "..tt.name:capitalize()
-				local diff = (ttid[2] or 0) - (ttid[1] or 0)
-				if diff ~= 0 then
-					if ttid[1] then
-						desc:add(("%+.2f"):format(ttid[2] or 0), diff < 0 and {"color","RED"} or {"color","LIGHT_GREEN"}, ("(%+.2f) "):format(diff), {"color","LAST"}, ("%s "):format(name))
+				if tt then				
+					local cat = tt.type:gsub("/.*", "")
+					local name = cat:capitalize().." / "..tt.name:capitalize()
+					local diff = (ttid[2] or 0) - (ttid[1] or 0)
+					if diff ~= 0 then
+						if ttid[1] then
+							desc:add(("%+.2f"):format(ttid[2] or 0), diff < 0 and {"color","RED"} or {"color","LIGHT_GREEN"}, ("(%+.2f) "):format(diff), {"color","LAST"}, ("%s "):format(name))
+						else
+							desc:add({"color","LIGHT_GREEN"}, ("%+.2f"):format(ttid[2] or 0),  {"color","LAST"}, (" %s "):format(name))
+						end
 					else
-						desc:add({"color","LIGHT_GREEN"}, ("%+.2f"):format(ttid[2] or 0),  {"color","LAST"}, (" %s "):format(name))
+						desc:add({"color","WHITE"}, ("%+.2f(-) %s "):format(ttid[2] or ttid[1], name), {"color","LAST"})
 					end
-				else
-					desc:add({"color","WHITE"}, ("%+.2f(-) %s "):format(ttid[2] or ttid[1], name), {"color","LAST"})
 				end
 			end
 			desc:add(true)
diff --git a/game/modules/tome/data/general/objects/world-artifacts-maj-eyal.lua b/game/modules/tome/data/general/objects/world-artifacts-maj-eyal.lua
index fa250f37c5f3f5b61c94cb4255052ca5203d03c0..cbe203b18837cf8e3688a0c0bab1c8d0a63a24f1 100644
--- a/game/modules/tome/data/general/objects/world-artifacts-maj-eyal.lua
+++ b/game/modules/tome/data/general/objects/world-artifacts-maj-eyal.lua
@@ -511,7 +511,7 @@ Finally The Scorpion was defeated by the alchemist Nessylia, who went to face th
 		combat_armor = 4,
 		combat_def = 8,
 		disarm_immune = 0.4,
-		talents_types_mastery = { ["psionic/grip"] = 0.2, ["technique/grappling"] = 0.2},
+		talents_types_mastery = { ["technique/grappling"] = 0.2},
 		combat = {
 			dam = 24,
 			apr = 10,