init.lua 575 B

1234567891011121314151617
  1. -- This mod provides the visible text on signs library used by Home Decor
  2. -- and perhaps other mods at some point in the future. Forked from thexyz's/
  3. -- PilzAdam's original text-on-signs mod and rewritten by Vanessa Ezekowitz
  4. -- and Diego Martinez
  5. signs_lib = {}
  6. signs_lib.path = minetest.get_modpath(minetest.get_current_modname())
  7. local S, NS = dofile(signs_lib.path .. "/intllib.lua")
  8. signs_lib.gettext = S
  9. dofile(signs_lib.path.."/api.lua")
  10. dofile(signs_lib.path.."/encoding.lua")
  11. dofile(signs_lib.path.."/standard_signs.lua")
  12. dofile(signs_lib.path.."/compat.lua")