From d94ebd7e54940cf0e757dfdf2f2675a0c15eb98e Mon Sep 17 00:00:00 2001 From: VorTechnix <45538536+VorTechnix@users.noreply.github.com> Date: Sun, 18 Jul 2021 13:12:45 -0700 Subject: [PATCH] separate init for meta commands --- .../commands/meta/init.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 worldeditadditions_commands/commands/meta/init.lua diff --git a/worldeditadditions_commands/commands/meta/init.lua b/worldeditadditions_commands/commands/meta/init.lua new file mode 100644 index 0000000..5216dc7 --- /dev/null +++ b/worldeditadditions_commands/commands/meta/init.lua @@ -0,0 +1,16 @@ +-- ███ ███ ███████ ████████ █████ +-- ████ ████ ██ ██ ██ ██ +-- ██ ████ ██ █████ ██ ███████ +-- ██ ██ ██ ██ ██ ██ ██ +-- ██ ██ ███████ ██ ██ ██ + +-- Commands that work on other commands. + +local we_cm = worldeditadditions_commands.modpath .. "/commands/meta/" + +dofile(we_cm.."airapply.lua") +dofile(we_cm.."elipsoidapply.lua") +dofile(we_cm.."many.lua") +dofile(we_cm.."multi.lua") +dofile(we_cm.."subdivide.lua") +-- dofile(we_cm.."for.lua")