mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-10-31 21:33:02 +00:00
25 lines
1.3 KiB
Lua
25 lines
1.3 KiB
Lua
-- ███████ ███████ ██ ███████ ██████ ████████ ██████ ██████ ███████
|
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
-- ███████ █████ ██ █████ ██ ██ ██ ██ ██████ ███████
|
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
-- ███████ ███████ ███████ ███████ ██████ ██ ██████ ██ ██ ███████
|
|
|
|
-- Chat commands that operate on selections.
|
|
|
|
local we_cmdpath = worldeditadditions_commands.modpath .. "/commands/selectors/"
|
|
|
|
dofile(we_cmdpath.."srel.lua")
|
|
dofile(we_cmdpath.."scentre.lua")
|
|
dofile(we_cmdpath.."scloud.lua")
|
|
dofile(we_cmdpath.."scol.lua")
|
|
dofile(we_cmdpath.."scube.lua")
|
|
dofile(we_cmdpath.."sfactor.lua")
|
|
dofile(we_cmdpath.."smake.lua")
|
|
dofile(we_cmdpath.."spop.lua")
|
|
dofile(we_cmdpath.."spush.lua")
|
|
dofile(we_cmdpath.."srect.lua")
|
|
dofile(we_cmdpath.."sshift.lua")
|
|
dofile(we_cmdpath.."sstack.lua")
|
|
|
|
-- Aliases
|
|
worldedit.alias_command("sfac", "sfactor")
|