1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-06-28 06:11:47 +02:00

Modified doors, vines, homedecor, etc...

- Added doors:trapdoor_cherry and its craft recipe
- Removed useless door textures (not following naming convention, so not used in code since the last mff_game update)
- Added missing homedecor_models
- Re-added vines:shears needed for vines' roots
This commit is contained in:
LeMagnesium
2015-04-01 21:42:29 +02:00
parent 4d9a1e8741
commit 16fd682ebb
49 changed files with 18180 additions and 6 deletions

View File

@ -8,7 +8,7 @@ dofile( minetest.get_modpath( vines.name ) .. "/aliases.lua" )
dofile( minetest.get_modpath( vines.name ) .. "/recipes.lua" )
dofile( minetest.get_modpath( vines.name ) .. "/crafts.lua" )
dofile( minetest.get_modpath( vines.name ) .. "/nodes.lua" )
--dofile( minetest.get_modpath( vines.name ) .. "/shear.lua" )
dofile( minetest.get_modpath( vines.name ) .. "/shear.lua" )
dofile( minetest.get_modpath( vines.name ) .. "/vines.lua" )
print("[Vines] Loaded!")

View File

@ -1,4 +1,4 @@
[[minetest.register_tool("vines:shears", {
minetest.register_tool("vines:shears", {
description = "Shears for Vines",
inventory_image = "vines_shears.png",
wield_image = "vines_shears.png",
@ -12,4 +12,4 @@
wool={times={[3]=0.2}, maxwear=0.05, maxlevel=3}
}
},
})]]
})