settings.lua 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. -- In case you don't wanna have errors:
  2. -- Only change what's behind a "=" (or "--").
  3. -- Don't use caps (behind a "=").
  4. -- If there's a "false" (behind a "=") you can change it to "true" (and the other way around).
  5. -- Spelling is important.
  6. -- If "true" or "false" is necessary as setting, everything(!) which is not spelled "true" will be read as if it were "false" (even "1", "True"...)
  7. -- If you wanna comment something (for example to remember the default value), you can do this by putting "--" in front of the comment.
  8. -- You can put "--" at the end of a line with "=" in it, or at the beginning of an empty/new line (minetest will ignore what's behind it then).
  9. -- But don't put "--" in front of a line with "=" in it (or else minetest will ignore the setting and you might get an error).
  10. -- If something is still unclear, don't hesitate to post your question @ https://forum.minetest.net/viewtopic.php?id=6921
  11. abstract_ferns.config = {}
  12. -- Which plants should generate/spawn?
  13. abstract_ferns.config.enable_lady_fern = true
  14. abstract_ferns.config.enable_horsetails = true
  15. abstract_ferns.config.enable_treefern = true
  16. abstract_ferns.config.enable_giant_treefern = true
  17. -- Where should they generate/spawn? (if they generate/spawn)
  18. --
  19. -- Lady-Fern
  20. abstract_ferns.config.lady_ferns_near_tree = true
  21. abstract_ferns.config.lady_ferns_near_rock = true
  22. abstract_ferns.config.lady_ferns_near_ores = true -- if there's a bunch of ferns there's ores nearby, this one causes a huge fps drop
  23. abstract_ferns.config.lady_ferns_in_groups = false -- this one is meant as a replacement of Ferns_near_Ores: ferns tend to generate in groups, less fps drop, no hint for nearby ores
  24. --
  25. -- Horsetails
  26. abstract_ferns.config.enable_horsetails_spawning = false -- horsetails will grow in already explored areas, over time, near water or gravel
  27. abstract_ferns.config.enable_horsetails_on_grass = true -- on dirt with grass and swamp (sumpf mod)
  28. abstract_ferns.config.enable_horsetails_on_stones = true -- on gravel, mossy cobble and silex (stoneage mod)
  29. --
  30. -- Tree_Fern
  31. abstract_ferns.config.enable_treeferns_in_jungle = true
  32. abstract_ferns.config.enable_treeferns_in_oases = true -- for oases and tropical beaches
  33. --
  34. -- Giant_Tree_Fern
  35. abstract_ferns.config.enable_giant_treeferns_in_jungle = true
  36. abstract_ferns.config.enable_giant_treeferns_in_oases = true -- for oases and tropical beaches