Minetest-WorldEditAdditions/worldeditadditions_commands/commands/meta/init.lua

19 lines
791 B
Lua
Raw Normal View History

2021-07-18 20:12:45 +00:00
-- ███ ███ ███████ ████████ █████
-- ████ ████ ██ ██ ██ ██
-- ██ ████ ██ █████ ██ ███████
-- ██ ██ ██ ██ ██ ██ ██
-- ██ ██ ███████ ██ ██ ██
-- Commands that work on other commands.
2022-09-18 21:37:26 +00:00
local we_cmdpath = worldeditadditions_commands.modpath .. "/commands/meta/"
2021-07-18 20:12:45 +00:00
2022-09-18 21:37:26 +00:00
dofile(we_cmdpath.."airapply.lua")
dofile(we_cmdpath.."ellipsoidapply.lua")
dofile(we_cmdpath.."for.lua")
2021-07-29 22:49:37 +00:00
-- dofile(we_cm.."macro.lua") -- Async bug
2022-09-18 21:37:26 +00:00
dofile(we_cmdpath.."many.lua")
dofile(we_cmdpath.."multi.lua")
dofile(we_cmdpath.."noiseapply2d.lua")
dofile(we_cmdpath.."subdivide.lua")