toolrank check bugfix

This commit is contained in:
TenPlus1 2018-07-01 14:19:34 +01:00
parent 40416aa4fd
commit 04ae3502a5
1 changed files with 4 additions and 1 deletions

View File

@ -2430,7 +2430,10 @@ local mob_punch = function(self, hitter, tflp, tool_capabilities, dir)
end
if tr then
weapon:add_wear(toolranks.new_afteruse(weapon, hitter, nil, {wear = wear}))
if weapon:get_definition()
and weapon:get_definition().original_description then
weapon:add_wear(toolranks.new_afteruse(weapon, hitter, nil, {wear = wear}))
end
else
weapon:add_wear(wear)
end