2020-11-15 20:25:38 +01:00
|
|
|
--[[
|
|
|
|
GloopBlocks
|
|
|
|
Originally written by GloopMaster
|
|
|
|
|
|
|
|
Maintained by VanessaE.
|
|
|
|
|
|
|
|
--]]
|
|
|
|
|
|
|
|
gloopblocks = {}
|
|
|
|
|
|
|
|
-- Load support for intllib.
|
|
|
|
local MP = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
local S, NS = dofile(MP.."/intllib.lua")
|
|
|
|
|
2021-02-15 16:43:50 +01:00
|
|
|
dofile(MP.."/main.lua")
|
|
|
|
dofile(MP.."/crafts.lua")
|
|
|
|
dofile(MP.."/lava-handling.lua")
|
2020-11-15 20:25:38 +01:00
|
|
|
|
|
|
|
print(S("Gloopblocks Loaded!"))
|