mirror of
https://github.com/minetest-mods/ropes.git
synced 2024-11-24 08:23:47 +01:00
0483566b72
I moved the rope length settings to the main init.lua to make them easier to find, and reduced standard rope length to 50 meters (5x max is now 250m). Also set ladders to sunlight propagates, and fixed some minor bugs in the code.
16 lines
540 B
Lua
16 lines
540 B
Lua
vines = {
|
|
name = 'vines',
|
|
ropeLadderLength = 50,
|
|
ropeLength = 50,
|
|
}
|
|
|
|
dofile( minetest.get_modpath( vines.name ) .. "/functions.lua" )
|
|
dofile( minetest.get_modpath( vines.name ) .. "/aliases.lua" )
|
|
dofile( minetest.get_modpath( vines.name ) .. "/crafts.lua" )
|
|
dofile( minetest.get_modpath( vines.name ) .. "/ropeboxes.lua" )
|
|
dofile( minetest.get_modpath( vines.name ) .. "/ladder.lua" )
|
|
dofile( minetest.get_modpath( vines.name ) .. "/shear.lua" )
|
|
dofile( minetest.get_modpath( vines.name ) .. "/vines.lua" )
|
|
|
|
print("[Vines] Loaded!")
|