2018-05-20 10:52:16 +00:00
|
|
|
--- WorldEditAdditions-ChatCommands
|
|
|
|
-- @module worldeditadditions_commands
|
|
|
|
-- @release 0.1
|
|
|
|
-- @copyright 2018 Starbeamrainbowlabs
|
|
|
|
-- @license Mozilla Public License, 2.0
|
|
|
|
-- @author Starbeamrainbowlabs
|
|
|
|
|
2020-05-02 23:37:18 +00:00
|
|
|
worldeditadditions_commands = {}
|
|
|
|
local we_c = worldeditadditions_commands
|
2018-10-13 23:19:32 +00:00
|
|
|
|
2020-05-02 23:37:18 +00:00
|
|
|
we_c.modpath = minetest.get_modpath("worldeditadditions_commands")
|
2018-05-20 13:46:54 +00:00
|
|
|
|
2020-05-02 23:37:18 +00:00
|
|
|
dofile(we_c.modpath.."/multi.lua")
|
2018-06-09 12:05:09 +00:00
|
|
|
|
2020-05-02 23:37:18 +00:00
|
|
|
we_c.safe_region, we_c.check_region, we_c.reset_pending
|
|
|
|
= dofile(we_c.modpath.."/safe.lua")
|
2018-06-09 12:05:09 +00:00
|
|
|
|
2020-05-03 15:19:42 +00:00
|
|
|
dofile(we_c.modpath.."/utils/strings.lua")
|
2020-05-02 23:37:18 +00:00
|
|
|
dofile(we_c.modpath.."/commands/floodfill.lua")
|
|
|
|
dofile(we_c.modpath.."/commands/overlay.lua")
|
|
|
|
dofile(we_c.modpath.."/commands/ellipsoid.lua")
|
|
|
|
dofile(we_c.modpath.."/commands/torus.lua")
|
|
|
|
dofile(we_c.modpath.."/commands/maze.lua")
|