mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-10-31 21:33:02 +00:00
7b651d7abe
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
18 lines
557 B
Lua
18 lines
557 B
Lua
--- 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")
|
|
|
|
-- Initialise WorldEdit stuff if the WorldEdit mod is not present
|
|
if not minetest.get_modpath("worldedit") then
|
|
dofile(we_c.modpath.."/worldedit/init.lua")
|
|
end
|
|
|
|
dofile(we_c.modpath.."/register/init.lua")
|