mirror of
https://github.com/mt-mods/plantlife_modpack.git
synced 2024-11-05 09:50:27 +01:00
47c20dc550
because they are not translated anyway
21 lines
879 B
Lua
21 lines
879 B
Lua
-----------------------------------------------------------------------------------------------
|
|
local title = "Trunks"
|
|
local version = "0.1.4"
|
|
local mname = "trunks"
|
|
-----------------------------------------------------------------------------------------------
|
|
-- Code by Mossmanikin & Neuromancer
|
|
|
|
abstract_trunks = {}
|
|
|
|
-- support for i18n
|
|
local S = minetest.get_translator("trunks")
|
|
|
|
dofile(minetest.get_modpath("trunks").."/trunks_settings.txt")
|
|
dofile(minetest.get_modpath("trunks").."/generating.lua")
|
|
dofile(minetest.get_modpath("trunks").."/nodes.lua")
|
|
dofile(minetest.get_modpath("trunks").."/crafting.lua")
|
|
|
|
-----------------------------------------------------------------------------------------------
|
|
print("[Mod] "..title.." ["..version.."] ["..mname.."] Loaded...")
|
|
-----------------------------------------------------------------------------------------------
|