diff --git a/init.lua b/init.lua index 75adf5e..be7a6a4 100644 --- a/init.lua +++ b/init.lua @@ -7,24 +7,23 @@ minetest.register_node("vines:rope_block", { paramtype = "light", drops = "", tile_images = { - "vines_rope_block.png", - "vines_rope_block.png", - "default_wood.png", - "default_wood.png", - "vines_rope_block.png", - "vines_rope_block.png" - }, + "vines_rope_block.png", + "vines_rope_block.png", + "default_wood.png", + "default_wood.png", + "vines_rope_block.png", + "vines_rope_block.png" + }, drawtype = "cube", groups = { snappy = 3}, sounds = default.node_sound_leaves_defaults(), after_place_node = function(pos) - local p = {x=pos.x, y=pos.y-1, z=pos.z} local n = minetest.env:get_node(p) if n.name == "air" then - minetest.env:add_node(p, {name="vines:rope_end"}) - end - end, + minetest.env:add_node(p, {name="vines:rope_end"}) + end + end, }) minetest.register_node("vines:rope", { diff --git a/textures/new/bottomvine.png b/textures/new/bottomvine.png new file mode 100644 index 0000000..c92bb85 Binary files /dev/null and b/textures/new/bottomvine.png differ diff --git a/textures/new/sidevine.png b/textures/new/sidevine.png new file mode 100644 index 0000000..4245711 Binary files /dev/null and b/textures/new/sidevine.png differ diff --git a/textures/new/vinesdead.png b/textures/new/vinesdead.png new file mode 100644 index 0000000..d001ec9 Binary files /dev/null and b/textures/new/vinesdead.png differ diff --git a/textures/new/vineslive.png b/textures/new/vineslive.png new file mode 100644 index 0000000..6ba42b5 Binary files /dev/null and b/textures/new/vineslive.png differ diff --git a/textures/old/vines_vine2.png b/textures/old/vines_vine2.png new file mode 100644 index 0000000..b938f4b Binary files /dev/null and b/textures/old/vines_vine2.png differ diff --git a/textures/old/vines_vine_rotten2.png b/textures/old/vines_vine_rotten2.png new file mode 100644 index 0000000..11b5474 Binary files /dev/null and b/textures/old/vines_vine_rotten2.png differ diff --git a/textures/vines_vine.png b/textures/vines_vine.png index b938f4b..6ba42b5 100644 Binary files a/textures/vines_vine.png and b/textures/vines_vine.png differ diff --git a/textures/vines_vine_rotten.png b/textures/vines_vine_rotten.png index 11b5474..d001ec9 100644 Binary files a/textures/vines_vine_rotten.png and b/textures/vines_vine_rotten.png differ