mirror of
https://github.com/minetest-mods/ropes.git
synced 2024-11-28 10:23:44 +01:00
Fixed deprciated
tile_images to tiles maxwear to uses = 60 Made fuction override local
This commit is contained in:
parent
1ac1892d56
commit
f5e528ef69
@ -33,7 +33,7 @@ vines.register_vine = function( name, defs, biome )
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
buildable_to = true,
|
buildable_to = true,
|
||||||
tile_images = { vine_image_end },
|
tiles = { vine_image_end },
|
||||||
drawtype = drawtype,
|
drawtype = drawtype,
|
||||||
inventory_image = vine_image_end,
|
inventory_image = vine_image_end,
|
||||||
groups = groups,
|
groups = groups,
|
||||||
@ -71,7 +71,7 @@ vines.register_vine = function( name, defs, biome )
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
buildable_to = true,
|
buildable_to = true,
|
||||||
tile_images = { vine_image_middle },
|
tiles = { vine_image_middle },
|
||||||
wield_image = vine_image_middle,
|
wield_image = vine_image_middle,
|
||||||
drawtype = drawtype,
|
drawtype = drawtype,
|
||||||
inventory_image = vine_image_middle,
|
inventory_image = vine_image_middle,
|
||||||
@ -94,7 +94,7 @@ vines.register_vine = function( name, defs, biome )
|
|||||||
biome_lib:spawn_on_surfaces( biome )
|
biome_lib:spawn_on_surfaces( biome )
|
||||||
|
|
||||||
local override_nodes = function( nodes, defs )
|
local override_nodes = function( nodes, defs )
|
||||||
function override( index, registered )
|
local function override( index, registered )
|
||||||
local node = nodes[ index ]
|
local node = nodes[ index ]
|
||||||
if index > #nodes then return registered end
|
if index > #nodes then return registered end
|
||||||
if minetest.registered_nodes[node] then
|
if minetest.registered_nodes[node] then
|
||||||
|
@ -2,7 +2,7 @@ minetest.register_node("vines:rope_block", {
|
|||||||
description = "Rope",
|
description = "Rope",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
tile_images = {
|
tiles = {
|
||||||
"default_wood.png^vines_rope.png",
|
"default_wood.png^vines_rope.png",
|
||||||
"default_wood.png^vines_rope.png",
|
"default_wood.png^vines_rope.png",
|
||||||
"default_wood.png",
|
"default_wood.png",
|
||||||
@ -36,7 +36,7 @@ minetest.register_node("vines:rope", {
|
|||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
drop = "",
|
drop = "",
|
||||||
tile_images = { "vines_rope.png" },
|
tiles = { "vines_rope.png" },
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
groups = {flammable=2, not_in_creative_inventory=1},
|
groups = {flammable=2, not_in_creative_inventory=1},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
@ -53,7 +53,7 @@ minetest.register_node("vines:rope_end", {
|
|||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
drop = "",
|
drop = "",
|
||||||
tile_images = { "vines_rope_end.png" },
|
tiles = { "vines_rope_end.png" },
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
groups = {flammable=2, not_in_creative_inventory=1},
|
groups = {flammable=2, not_in_creative_inventory=1},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
@ -8,8 +8,8 @@ minetest.register_tool("vines:shears", {
|
|||||||
full_punch_interval = 1.0,
|
full_punch_interval = 1.0,
|
||||||
max_drop_level=0,
|
max_drop_level=0,
|
||||||
groupcaps={
|
groupcaps={
|
||||||
snappy={times={[3]=0.2}, maxwear=0.05, maxlevel=3},
|
snappy={times={[3]=0.2}, uses=60, maxlevel=3},
|
||||||
wool={times={[3]=0.2}, maxwear=0.05, maxlevel=3}
|
wool={times={[3]=0.2}, uses=60, maxlevel=3}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user