Vanessa Dannenberg 97197e3d98 add cool_trees modpack (all components)
update castles, farming redo, maptools, mesecons,
moreblocks, moreores, signs_lib, technic,
unified inventory, and worldedit
2019-11-03 13:17:36 -05:00

30 lines
826 B
Lua

--[[
=====================================================================
** Map Tools **
By Calinou.
Copyright © 2012-2019 Hugo Locurcio and contributors.
Licensed under the zlib license. See LICENSE.md for more information.
=====================================================================
--]]
maptools = {}
local modpath = minetest.get_modpath("maptools")
local S, NS = dofile(modpath .. "/intllib.lua")
maptools.S = S
maptools.NS = NS
maptools.drop_msg = function(itemstack, player)
local name = player:get_player_name()
minetest.chat_send_player(name, S("[maptools] tools/nodes do not drop!"))
end
dofile(modpath .. "/config.lua")
dofile(modpath .. "/aliases.lua")
dofile(modpath .. "/craftitems.lua")
dofile(modpath .. "/default_nodes.lua")
dofile(modpath .. "/nodes.lua")
dofile(modpath .. "/tools.lua")