aboutsummaryrefslogtreecommitdiff
path: root/data/builtin.lua
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2012-03-09 23:53:25 +0200
committerPerttu Ahola <celeron55@gmail.com>2012-03-10 11:28:14 +0200
commit989aba1966373885d4cac306daea25e102f8d68d (patch)
tree7e735cba9a7c38eee1b3ccb4474cd5963e74a378 /data/builtin.lua
parent6b7d6c27ee53836c5f5a702056617770b59bf595 (diff)
downloadhax-minetest-server-989aba1966373885d4cac306daea25e102f8d68d.tar.gz
hax-minetest-server-989aba1966373885d4cac306daea25e102f8d68d.zip
Fix and tune things, add tool "recharge" animation, add dummyball
Diffstat (limited to 'data/builtin.lua')
-rw-r--r--data/builtin.lua20
1 files changed, 5 insertions, 15 deletions
diff --git a/data/builtin.lua b/data/builtin.lua
index b82b0137a..351cf3bb0 100644
--- a/data/builtin.lua
+++ b/data/builtin.lua
@@ -698,21 +698,6 @@ end
-- Built-in node definitions. Also defined in C.
--
-minetest.register_item(":", {
- type = "none",
- wield_image = "wieldhand.png",
- wield_scale = {x=1,y=1,z=2.5},
- tool_capabilities = {
- full_punch_interval = 2.0,
- max_drop_level = 0,
- groupcaps = {
- fleshy = {times={[2]=2.00, [3]=1.00}, maxwear=0, maxlevel=1},
- crumbly = {times={[3]=0.70}, maxwear=0, maxlevel=1},
- snappy = {times={[3]=0.70}, maxwear=0, maxlevel=1},
- }
- }
-})
-
minetest.register_item(":unknown", {
type = "none",
description = "Unknown Item",
@@ -749,6 +734,11 @@ minetest.register_node(":ignore", {
air_equivalent = true,
})
+-- The hand (bare definition)
+minetest.register_item(":", {
+ type = "none",
+})
+
--
-- Default material types
--