Move special commands to dedicated subdirectory

This commit is contained in:
Starbeamrainbowlabs 2020-09-20 17:33:48 +01:00
parent 5967db2496
commit d2b38d0ea1
No known key found for this signature in database
GPG Key ID: 1BE5172E637709C2
4 changed files with 3 additions and 3 deletions

@ -13,8 +13,6 @@ we_c.modpath = minetest.get_modpath("worldeditadditions_commands")
dofile(we_c.modpath.."/player_notify_suppress.lua")
dofile(we_c.modpath.."/multi.lua")
dofile(we_c.modpath.."/many.lua")
-- We no longer need our own implementation of safe_region thanks to @sfan5's
-- suggestion in issue #5 - yay!
@ -36,7 +34,9 @@ dofile(we_c.modpath.."/commands/erode.lua")
dofile(we_c.modpath.."/commands/count.lua")
dofile(we_c.modpath.."/commands/saplingaliases.lua")
dofile(we_c.modpath.."/commands/subdivide.lua")
dofile(we_c.modpath.."/commands/meta/multi.lua")
dofile(we_c.modpath.."/commands/meta/many.lua")
dofile(we_c.modpath.."/commands/meta/subdivide.lua")
-- Don't registry the //bonemeal command if the bonemeal mod isn't present
if minetest.get_modpath("bonemeal") then