Advertisement
JaguarJo

removed non-existant globalgroups

May 11th, 2014
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. # Group inheritance
  2. #
  3. # Any inherited groups prefixed with a g: are global groups
  4. # and are inherited from the GlobalGroups.yml.
  5. #
  6. # Groups without the g: prefix are groups local to this world
  7. # and are defined in the this groups.yml file.
  8. #
  9. # Local group inheritances define your promotion tree when using 'manpromote/mandemote'
  10.  
  11. groups:
  12. Default:
  13. default: true
  14. permissions:
  15. - -bukkit.command.kill
  16. inheritance:
  17. - g:bukkit_default
  18. - g:essentials_default
  19. info:
  20. prefix: '&e'
  21. build: false
  22. suffix: ''
  23. Builder:
  24. default: false
  25. permissions: []
  26. inheritance:
  27. - default
  28. - g:essentials_builder
  29. - g:towny_builder
  30. info:
  31. prefix: '&2'
  32. build: true
  33. suffix: ''
  34. Moderator:
  35. default: false
  36. permissions: []
  37. inheritance:
  38. - builder
  39. - g:bukkit_moderator
  40. - g:essentials_moderator
  41. - g:towny_moderator
  42. info:
  43. prefix: '&5'
  44. build: true
  45. suffix: ''
  46. Admin:
  47. default: false
  48. permissions: []
  49. inheritance:
  50. - moderator
  51. - g:bukkit_admin
  52. - g:essentials_admin
  53. - g:towny_admin
  54. info:
  55. prefix: '&c'
  56. build: true
  57. suffix: ''
  58. Owner:
  59. default: false
  60. permissions:
  61. - '*'
  62. - -vanish.*
  63. inheritance:
  64. - admin
  65. info:
  66. prefix: '&4'
  67. build: true
  68. suffix: ''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement