init.lua 438 B

123456789101112131415161718192021
  1. local S = minetest.get_translator("the_end_gameplay_guide_master")
  2. local text = S([[Welcome to The End
  3. Please report bugs, for example at https://notabug.org/NetherEran/The_End/issues
  4. You can see this guide ingame with /guide
  5. ]])
  6. in_game_guide.register_page("the_end_gameplay_guide_master:home",
  7. {
  8. title = S("Gameplay"),
  9. text = text,
  10. children =
  11. {
  12. "the_end_combat_guides:home",
  13. "the_end_crafting_guides:home",
  14. },
  15. })