2021-06-30 01:53:14 +00:00
|
|
|
--- WorldEditAdditions-Core
|
|
|
|
-- @module worldeditadditions_core
|
|
|
|
-- @release 1.13
|
|
|
|
-- @copyright 2021 Starbeamrainbowlabs and VorTechnix
|
|
|
|
-- @license Mozilla Public License, 2.0
|
|
|
|
-- @author Starbeamrainbowlabs and VorTechnix
|
|
|
|
|
|
|
|
worldeditadditions_core = {}
|
|
|
|
local we_c = worldeditadditions_core
|
|
|
|
|
|
|
|
we_c.modpath = minetest.get_modpath("worldeditadditions_core")
|
|
|
|
|
2021-07-15 20:47:37 +00:00
|
|
|
-- Initialise WorldEdit stuff if the WorldEdit mod is not present
|
2021-06-30 01:53:14 +00:00
|
|
|
if not minetest.get_modpath("worldedit") then
|
|
|
|
dofile(we_c.modpath.."/worldedit/init.lua")
|
|
|
|
end
|
|
|
|
|
|
|
|
dofile(we_c.modpath.."/register/init.lua")
|