diff options
author | Rubenwardy <anjayward@gmail.com> | 2012-09-01 19:19:10 +0100 |
---|---|---|
committer | Rubenwardy <anjayward@gmail.com> | 2012-09-01 19:19:10 +0100 |
commit | 96ae53580185e1440f489d75f0474369a7ff4336 (patch) | |
tree | 82c95275ff2f6308bc1bd00872deac685c95e551 /fruits.lua | |
parent | 805bf35c176e1a8881996fada0016ec29bfafcd0 (diff) |
deleted redundant file
Diffstat (limited to 'fruits.lua')
-rw-r--r-- | fruits.lua | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/fruits.lua b/fruits.lua deleted file mode 100644 index 7322f7d..0000000 --- a/fruits.lua +++ /dev/null @@ -1,25 +0,0 @@ --- RUBENFOOD MOD
--- A mod written by rubenwardy that adds
--- food to the minetest game
--- =====================================
--- >> rubenfood/fruits.lua
--- adds fruits
--- =====================================
--- [regis-food] Oranges
--- =====================================
-
-print ("RubenFood [Master] - Loading Fruits")
-
-minetest.register_node(":default:orange", {
- description = "Orange Fruit",
- drawtype = "plantlike",
- visual_scale = 1.0,
- tiles = {"food_orange.png"},
- inventory_image = "food_orange.png",
- paramtype = "light",
- sunlight_propagates = true,
- walkable = false,
- groups = {fleshy=3,dig_immediate=3,flammable=2},
- on_use = minetest.item_eat(4),
- sounds = default.node_sound_defaults(),
-})
\ No newline at end of file |