diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua
index eb64a5186571dcddd4541a30a3c1db14d9aad4f0..7d816275f8fffe926a0c84747d3dfb311c0e136d 100644
--- a/game/modules/tome/class/Actor.lua
+++ b/game/modules/tome/class/Actor.lua
@@ -6079,6 +6079,13 @@ function _M:transmoGetWord()
 	return "transmogrify"
 end
 
+function _M:canUseTinker(tinker)
+	if not tinker.is_tinker then return nil, "not an attachable item" end
+	if not self.can_tinker then return nil, "can not use attachements" end
+	if not self.can_tinker[tinker.is_tinker] then return nil, "can not use attachements of this type" end
+	return true
+end
+
 function _M:doTakeoffTinker(base_o, oldo)
 	if base_o.tinker ~= oldo then return end
 
@@ -6108,8 +6115,9 @@ function _M:doWearTinker(wear_inven, wear_item, wear_o, base_inven, base_item, b
 		game.logPlayer(self, "You can not use a tinker without the corresponding item.")
 		return
 	end
-	if not wear_o.is_tinker then
-		game.logPlayer(self, "This item is not a tinker.")
+	local ok, err = self:canUseTinker(wear_o)
+	if not ok then
+		game.logPlayer(self, "This item is not usable: %s.", err)
 		return
 	end
 	if wear_o.on_type and wear_o.on_type ~= rawget(base_o, "type") then