summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Kasatkin <mk@realbadangel.pl>2012-10-19 20:28:52 +0200
committerMaciej Kasatkin <mk@realbadangel.pl>2012-10-19 20:28:52 +0200
commita382a2241ad0cdfdd718cd985fdd46c62d5f1a9e (patch)
treeab79beb6220b57fce49174e775d51070199f9e79
parent33eba5880dbeb6f0157cfbd51eb81504bf8f948e (diff)
renamed caouthouc to raw latex, fix to rubber tree farming
-rw-r--r--textures/technic_raw_latex.png (renamed from textures/technic_caouthouc.png)bin1625 -> 1625 bytes
-rw-r--r--tree_tap.lua10
2 files changed, 5 insertions, 5 deletions
diff --git a/textures/technic_caouthouc.png b/textures/technic_raw_latex.png
index 7fbbe64..7fbbe64 100644
--- a/textures/technic_caouthouc.png
+++ b/textures/technic_raw_latex.png
Binary files differ
diff --git a/tree_tap.lua b/tree_tap.lua
index 92c56b0..9061cea 100644
--- a/tree_tap.lua
+++ b/tree_tap.lua
@@ -7,7 +7,7 @@
local pos=minetest.get_pointed_thing_position(pointed_thing,above)
local node=minetest.env:get_node(pos)
local node_name=node.name
- if node_name == "farming:rubber_tree_full" then
+ if node_name == "farming_plus:rubber_tree_full" then
user:get_inventory():add_item("main",ItemStack("technic:caouthouc"))
minetest.env:set_node(pos,node)
local item=itemstack:to_table()
@@ -32,15 +32,15 @@
},
})
- minetest.register_craftitem("technic:caouthouc", {
- description = "Caouthouc",
- inventory_image = "technic_caouthouc.png",
+ minetest.register_craftitem("technic:raw_latex", {
+ description = "Raw Latex",
+ inventory_image = "technic_raw_latex.png",
})
minetest.register_craft({
type = "cooking",
output = "technic:rubber",
- recipe = "technic:caouthouc",
+ recipe = "technic:raw_latex",
})
minetest.register_craftitem("technic:rubber", {