From 58177b1086986d80e637ac5f85a7278d8e37cb7a Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 16 Oct 2018 12:58:50 +0200 Subject: [PATCH] Add disable_repair group --- init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index 85c055c..32c749e 100644 --- a/init.lua +++ b/init.lua @@ -112,7 +112,7 @@ minetest.register_tool("teletool:teletool_infinite", { end return itemstack end, - groups = { teletool = 1 }, + groups = { teletool = 1, disable_repair = 1 }, }) @@ -156,7 +156,7 @@ if(minetest.get_modpath("technic")) then end return itemstack end, - groups = { teletool = 1 }, + groups = { teletool = 1, disable_repair = 1 }, -- Technic data wear_represents = "technic_RE_charge", @@ -197,7 +197,7 @@ if(minetest.get_modpath("mana") ~= nil) then end return itemstack end, - groups = { teletool = 1 }, + groups = { teletool = 1, disable_repair = 1 }, }) end -- 2.11.4.GIT