summaryrefslogtreecommitdiff
path: root/api.lua
diff options
context:
space:
mode:
Diffstat (limited to 'api.lua')
-rw-r--r--api.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/api.lua b/api.lua
index 3ee2257..b19523f 100644
--- a/api.lua
+++ b/api.lua
@@ -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