Add all tools to teletool group

master
Wuzzy 2016-08-07 20:33:52 +02:00
parent 6197030833
commit eef24684a5
1 changed files with 3 additions and 0 deletions

View File

@ -102,6 +102,7 @@ minetest.register_tool("teletool:teletool_infinite", {
end
return itemstack
end,
groups = { teletool = 1 },
})
@ -138,6 +139,7 @@ if(minetest.get_modpath("technic")) then
end
return itemstack
end,
groups = { teletool = 1 },
-- Technic data
wear_represents = "technic_RE_charge",
@ -171,6 +173,7 @@ if(minetest.get_modpath("mana") ~= nil) then
end
return itemstack
end,
groups = { teletool = 1 },
})
end