From 050f1ec9d8a723d1f9ce3897313b2f164aaeb0b8 Mon Sep 17 00:00:00 2001
From: DarkGod <darkgod@net-core.org>
Date: Fri, 25 Jul 2014 12:15:41 +0200
Subject: [PATCH] moar

---
 game/modules/tome/class/Actor.lua | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua
index eb64a51865..7d816275f8 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
-- 
GitLab