init.lua 879 B

123456789101112131415161718192021
  1. -----------------------------------------------------------------------------------------------
  2. local title = "Trunks"
  3. local version = "0.1.4"
  4. local mname = "trunks"
  5. -----------------------------------------------------------------------------------------------
  6. -- Code by Mossmanikin & Neuromancer
  7. abstract_trunks = {}
  8. -- support for i18n
  9. local S = minetest.get_translator("trunks")
  10. dofile(minetest.get_modpath("trunks").."/trunks_settings.txt")
  11. dofile(minetest.get_modpath("trunks").."/generating.lua")
  12. dofile(minetest.get_modpath("trunks").."/nodes.lua")
  13. dofile(minetest.get_modpath("trunks").."/crafting.lua")
  14. -----------------------------------------------------------------------------------------------
  15. print("[Mod] "..title.." ["..version.."] ["..mname.."] Loaded...")
  16. -----------------------------------------------------------------------------------------------