Added missing texture
authorMaciej Kasatkin <mk@realbadangel.pl>
Sun, 14 Oct 2012 21:40:03 +0000 (23:40 +0200)
committerMaciej Kasatkin <mk@realbadangel.pl>
Sun, 14 Oct 2012 21:40:03 +0000 (23:40 +0200)
textures/technic_light.png [new file with mode: 0644]
water_can1.lua [deleted file]

diff --git a/textures/technic_light.png b/textures/technic_light.png
new file mode 100644 (file)
index 0000000..334cb07
Binary files /dev/null and b/textures/technic_light.png differ
diff --git a/water_can1.lua b/water_can1.lua
deleted file mode 100644 (file)
index c61ccac..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-water_can_max_load = 16
-
-minetest.register_craft({
-       output = 'technic:water_can 1',
-       recipe = {
-               {'technic:zinc_ingot', 'technic:rubber_fiber','technic:zinc_ingot'},
-               {'default:steel_ingot', '', 'default:steel_ingot'},
-               {'technic:zinc_ingot', 'default:steel_ingot', 'technic:zinc_ingot'},
-       }
-})
-
-minetest.register_tool("technic:water_can", {
-       description = "Water Can",
-       inventory_image = "technic_water_can.png",
-       stack_max = 1,
-       liquids_pointable = true,
-       on_use = function(itemstack, user, pointed_thing)
-               
-               if pointed_thing.type ~= "node" then
-                                       return end
-               
-               n = minetest.env:get_node(pointed_thing.under)
-               if n.name == "default:water_source" then
-                       item=itemstack:to_table()
-                       local load=tonumber((item["wear"])) 
-                       if  load==0 then load =65535 end
-                       load=get_RE_item_load(load,water_can_max_load)
-                       print ("Water can load"..load)
-                       if load+1<17 then
-                       minetest.env:add_node(pointed_thing.under, {name="air"})
-                        load=load+1;   
-                       load=set_RE_item_load(load,water_can_max_load)
-                       item["wear"]=tostring(load)
-                       itemstack:replace(item)
-                       end
-                       return itemstack
-               end
-               item=itemstack:to_table()
-                       load=tonumber((item["wear"])) 
-                       if  load==0 then load =65535 end
-                       load=get_RE_item_load(load,water_can_max_load)
-                       if load==0 then return end
-                       n = minetest.env:get_node(pointed_thing.under)
-                       if minetest.registered_nodes[n.name].buildable_to then
-                       -- buildable
-                       minetest.env:add_node(pointed_thing.under, {name="default:water_source"})
-                       load=load-1;    
-                       load=set_RE_item_load(load,water_can_max_load)
-                       item["wear"]=tostring(load)
-                       itemstack:replace(item)
-                       return itemstack
-                       else
-                       n = minetest.env:get_node(pointed_thing.above)
-                       -- not buildable
-                       -- check if its allowed to replace the node
-                       if not minetest.registered_nodes[n.name].buildable_to then
-                       return
-                       end
-                       minetest.env:add_node(pointed_thing.above, {name="default:water_source"})
-                       load=load-1;    
-                       load=set_RE_item_load(load,water_can_max_load)
-                       item["wear"]=tostring(load)
-                       itemstack:replace(item)
-                       return itemstack
-                       end
-
-       end,
-})