diff --git a/game/modules/tome/class/Object.lua b/game/modules/tome/class/Object.lua
index 7ae862ae4b37870c3f3a9f13a728f676641bcf10..29ff7841f6976f02d084f668e48fc957e4c8028d 100644
--- a/game/modules/tome/class/Object.lua
+++ b/game/modules/tome/class/Object.lua
@@ -1542,7 +1542,7 @@ function _M:getTextualDesc(compare_with, use_actor)
 
 		if (w and w.combat or can_combat_unarmed) and (use_actor:knowTalent(use_actor.T_EMPTY_HAND) or use_actor:attr("show_gloves_combat")) then
 			desc:add({"color","YELLOW"}, "When used to modify unarmed attacks:", {"color", "LAST"}, true)
-			compare_tab = { dam=1, atk=1, apr=0, physcrit=0, physspeed =(use_actor:knowTalent(use_actor.T_EMPTY_HAND) and 0.6 or 1), dammod={str=1}, damrange=1.1 }
+			compare_tab = { dam=1, atk=1, apr=0, physcrit=0, physspeed =(use_actor:knowTalent(use_actor.T_EMPTY_HAND) and 0.6 or 1), dammod=use_actor:getDammod({str=1}), damrange=1.1 }
 			desc_combat(w, compare_unarmed, "combat", compare_tab, true)
 		end
 	end