2018-05-20 12:52:16 +02:00
--- WorldEditAdditions-ChatCommands
-- @module worldeditadditions_commands
-- @release 0.1
-- @copyright 2018 Starbeamrainbowlabs
-- @license Mozilla Public License, 2.0
-- @author Starbeamrainbowlabs
2020-05-03 01:37:18 +02:00
worldeditadditions_commands = { }
local we_c = worldeditadditions_commands
2018-10-14 01:19:32 +02:00
2020-05-03 01:37:18 +02:00
we_c.modpath = minetest.get_modpath ( " worldeditadditions_commands " )
2018-05-20 15:46:54 +02:00
2020-06-26 22:15:13 +02:00
dofile ( we_c.modpath .. " /player_notify_suppress.lua " )
2020-05-03 01:37:18 +02:00
dofile ( we_c.modpath .. " /multi.lua " )
2020-08-11 22:39:28 +02:00
dofile ( we_c.modpath .. " /many.lua " )
2018-06-09 14:05:09 +02:00
2020-05-11 03:02:02 +02:00
-- We no longer need our own implementation of safe_region thanks to @sfan5's
-- suggestion in issue #5 - yay!
-- we_c.safe_region, we_c.check_region, we_c.reset_pending
-- = dofile(we_c.modpath.."/safe.lua")
2018-06-09 14:05:09 +02:00
2020-05-03 01:37:18 +02:00
dofile ( we_c.modpath .. " /commands/floodfill.lua " )
dofile ( we_c.modpath .. " /commands/overlay.lua " )
2020-06-11 01:38:16 +02:00
dofile ( we_c.modpath .. " /commands/layers.lua " )
2020-05-03 01:37:18 +02:00
dofile ( we_c.modpath .. " /commands/ellipsoid.lua " )
dofile ( we_c.modpath .. " /commands/torus.lua " )
2020-05-12 01:38:42 +02:00
dofile ( we_c.modpath .. " /commands/walls.lua " )
2020-05-03 01:37:18 +02:00
dofile ( we_c.modpath .. " /commands/maze.lua " )
2020-05-14 22:37:27 +02:00
dofile ( we_c.modpath .. " /commands/replacemix.lua " )
2020-06-09 22:11:34 +02:00
dofile ( we_c.modpath .. " /commands/convolve.lua " )
2020-08-21 14:27:40 +02:00
dofile ( we_c.modpath .. " /commands/erode.lua " )
2020-05-11 03:02:02 +02:00
2020-05-12 01:38:42 +02:00
dofile ( we_c.modpath .. " /commands/count.lua " )
2020-05-11 22:44:18 +02:00
2020-06-26 03:13:11 +02:00
dofile ( we_c.modpath .. " /commands/subdivide.lua " )
2020-05-11 03:02:02 +02:00
-- Don't registry the //bonemeal command if the bonemeal mod isn't present
if minetest.get_modpath ( " bonemeal " ) then
dofile ( we_c.modpath .. " /commands/bonemeal.lua " )
else
2020-06-09 22:11:34 +02:00
minetest.log ( " action " , " [WorldEditAdditions] bonemeal mod not detected: //bonemeal command not registered (if you see this message and you're using an alternative mod that provides bonemeal, please get in touch by opening an issue) " )
2020-05-11 03:02:02 +02:00
end
2020-06-11 02:00:19 +02:00
worldedit.alias_command ( " smoothadv " , " convolve " )
worldedit.alias_command ( " conv " , " convolve " )
worldedit.alias_command ( " naturalise " , " layers " )
worldedit.alias_command ( " naturalize " , " layers " )
worldedit.alias_command ( " flora " , " bonemeal " )