Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. # +----------------------------------------------------------------------------------------------+ #
  2. # | Vault integration settings | #
  3. # +----------------------------------------------------------------------------------------------+ #
  4.  
  5. # If Vault lookups for offline players on the main server thread should be enabled.
  6. #
  7. # LuckPerms has a "catch" for plugins attempting to perform unsafe offline player data lookups
  8. # from the main server thread. This catch raises an exception (causes an error to occur) when unsafe
  9. # lookups are made, instead of allowing the lookup to happen, which would likely cause the server
  10. # to lag.
  11. #
  12. # However, if you're willing to accept the consequences, the catch can be disabled by setting this
  13. # option to 'true.
  14. vault-unsafe-lookups: false
  15.  
  16. # If the vault-server option below should be used.
  17. #
  18. # - When this option is set to false, the server value defined above under "server" is used.
  19. use-vault-server: false
  20.  
  21. # The name of the server used within Vault operations.
  22. #
  23. # - If you don't want Vault operations to be server specific, set this to "global".
  24. # - Will only take effect if use-vault-server is set to true above.
  25. vault-server: global
  26.  
  27. # If global permissions should be considered when retrieving meta or player groups
  28. vault-include-global: true
  29.  
  30. # If Vault operations should ignore any world arguments if supplied.
  31. vault-ignore-world: false
  32.  
  33. # If LuckPerms should print debugging info to console when a plugin uses a Vault function
  34. vault-debug: false
  35.  
  36. # +----------------------------------------------------------------------------------------------+ #
  37. # | Miscellaneous (and rarely used) settings | #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement