From 95e70da3a68fd46083b640ee74ea3995dfa327d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=93=D0=B5=D1=80=D1=85=D0=B0=D1=80=D0=B4=20PICCORO=20Len?= =?UTF-8?q?z=20McKAY?= Date: Thu, 9 Dec 2021 16:54:51 -0400 Subject: [PATCH] Default: Increase the maximum level of the diamond axe to 3 * backported https://github.com/minetest/minetest_game/pull/1854 * This is the maximum level of the other diamond tools and makes the number of uses similar to them. * fixed https://github.com/minetest/minetest_game/issues/1456 Diamond axe breaks earlier than mese axe --- mods/default/tools.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/default/tools.lua b/mods/default/tools.lua index 77ea969..067613d 100644 --- a/mods/default/tools.lua +++ b/mods/default/tools.lua @@ -283,7 +283,7 @@ minetest.register_tool("default:axe_diamond", { full_punch_interval = 0.9, max_drop_level=1, groupcaps={ - choppy={times={[1]=2.10, [2]=0.90, [3]=0.50}, uses=30, maxlevel=2}, + choppy={times={[1]=2.10, [2]=0.90, [3]=0.50}, uses=30, maxlevel=3}, }, damage_groups = {fleshy=7}, },