From a253d59729318a4d4270048764f9b0692d9256d6 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 23 Feb 2017 14:25:09 +0100 Subject: [PATCH] Tweak shears durability --- mods/ENTITIES/mobs_mc/sheep.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ENTITIES/mobs_mc/sheep.lua b/mods/ENTITIES/mobs_mc/sheep.lua index 5bb676831..d3b36e232 100644 --- a/mods/ENTITIES/mobs_mc/sheep.lua +++ b/mods/ENTITIES/mobs_mc/sheep.lua @@ -98,7 +98,7 @@ mobs:register_mob("mobs_mc:sheep", { textures = {"mobs_sheep_sheared.png"}, }) if not minetest.setting_getbool("creative_mode") then - item:add_wear(300) + item:add_wear(65535/238) clicker:get_inventory():set_stack("main", clicker:get_wield_index(), item) end end