mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 07:23:00 +00:00
separate init for meta commands
This commit is contained in:
parent
5ea6ac18d2
commit
d94ebd7e54
1 changed files with 16 additions and 0 deletions
16
worldeditadditions_commands/commands/meta/init.lua
Normal file
16
worldeditadditions_commands/commands/meta/init.lua
Normal file
|
@ -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")
|
Loading…
Reference in a new issue