mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-02 14:31:05 +01:00
11 lines
418 B
Lua
11 lines
418 B
Lua
--Bow
|
|
dofile(minetest.get_modpath("mcl_bows") .. "/arrow.lua")
|
|
dofile(minetest.get_modpath("mcl_bows") .. "/bow.lua")
|
|
dofile(minetest.get_modpath("mcl_bows") .. "/rocket.lua")
|
|
|
|
--Crossbow
|
|
dofile(minetest.get_modpath("mcl_bows") .. "/crossbow.lua")
|
|
|
|
--Compatiblility with older MineClone worlds
|
|
minetest.register_alias("mcl_throwing:bow", "mcl_bows:bow")
|
|
minetest.register_alias("mcl_throwing:arrow", "mcl_bows:arrow")
|