Guest User

Untitled

a guest
Jul 29th, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.66 KB | None | 0 0
  1. #
  2. # WorldEdit's Configuration File
  3. #
  4. # About editing this file:
  5. # - DO NOT USE TABS. You MUST use spaces or Bukkit will complain and post
  6. # errors. If you use an editor, like Notepad++ (recommended for Windows
  7. # users), you must configure it to "replace tabs with spaces."
  8. # This can be changed in Settings > Preferences > Language Menu.
  9. # - Don't get rid of indentations. They are indented so some entries that are
  10. # in categories, like "max-blocks-changed", are placed in the "limits"
  11. # category.
  12. # - If you want to check the format of this file before putting it
  13. # into WorldEdit, paste it into http://yaml-online-parser.appspot.com/
  14. # and see if it gives you "ERROR:".
  15. # - Lines starting with # are comments, so they are ignored.
  16. # - If you want to allow blocks, make sure to change "disallowed-blocks" to []
  17. #
  18.  
  19. limits:
  20. max-blocks-changed:
  21. default: -1
  22. maximum: -1
  23. max-polygonal-points:
  24. default: -1
  25. maximum: 20
  26. max-radius: -1
  27. max-super-pickaxe-size: 5
  28. max-brush-radius: 5
  29. butcher-radius:
  30. default: -1
  31. maximum: -1
  32. disallowed-blocks:
  33. - "minecraft:oak_sapling"
  34. - "minecraft:jungle_sapling"
  35. - "minecraft:dark_oak_sapling:"
  36. - "minecraft:spruce_sapling"
  37. - "minecraft:birch_sapling"
  38. - "minecraft:acacia_sapling"
  39. - "minecraft:black_bed"
  40. - "minecraft:blue_bed"
  41. - "minecraft:brown_bed"
  42. - "minecraft:cyan_bed"
  43. - "minecraft:gray_bed"
  44. - "minecraft:green_bed"
  45. - "minecraft:light_blue_bed"
  46. - "minecraft:light_gray_bed"
  47. - "minecraft:lime_bed"
  48. - "minecraft:magenta_bed"
  49. - "minecraft:orange_bed"
  50. - "minecraft:pink_bed"
  51. - "minecraft:purple_bed"
  52. - "minecraft:red_bed"
  53. - "minecraft:white_bed"
  54. - "minecraft:yellow_bed"
  55. - "minecraft:powered_rail"
  56. - "minecraft:detector_rail"
  57. - "minecraft:grass"
  58. - "minecraft:dead_bush"
  59. - "minecraft:moving_piston"
  60. - "minecraft:piston_head"
  61. - "minecraft:sunflower"
  62. - "minecraft:rose_bush"
  63. - "minecraft:dandelion"
  64. - "minecraft:poppy"
  65. - "minecraft:brown_mushroom"
  66. - "minecraft:red_mushroom"
  67. - "minecraft:tnt"
  68. - "minecraft:torch"
  69. - "minecraft:fire"
  70. - "minecraft:redstone_wire"
  71. - "minecraft:wheat"
  72. - "minecraft:potatoes"
  73. - "minecraft:carrots"
  74. - "minecraft:melon_stem"
  75. - "minecraft:pumpkin_stem"
  76. - "minecraft:beetroots"
  77. - "minecraft:rail"
  78. - "minecraft:lever"
  79. - "minecraft:redstone_torch"
  80. - "minecraft:redstone_wall_torch"
  81. - "minecraft:repeater"
  82. - "minecraft:comparator"
  83. - "minecraft:stone_button"
  84. - "minecraft:birch_button"
  85. - "minecraft:acacia_button"
  86. - "minecraft:dark_oak_button"
  87. - "minecraft:jungle_button"
  88. - "minecraft:oak_button"
  89. - "minecraft:spruce_button"
  90. - "minecraft:cactus"
  91. - "minecraft:sugar_cane"
  92. - "minecraft:bedrock"
  93.  
  94. use-inventory:
  95. enable: false
  96. allow-override: true
  97. creative-mode-overrides: false
  98.  
  99. logging:
  100. log-commands: false
  101. file: worldedit.log
  102. # The format of custom log message. This is java general format string (java.util.Formatter). Arguments are:
  103. # 1$ : date - a Date object representing event time of the log record.
  104. # 2$ : source - a string representing the caller, if available; otherwise, the logger's name.
  105. # 3$ : logger - the logger's name.
  106. # 4$ : level - the log level.
  107. # 5$ : message - the formatted log message returned from the Formatter.formatMessage(LogRecord) method. It uses java.text formatting and does not use the java.util.Formatter format argument.
  108. # 6$ : thrown - a string representing the throwable associated with the log record and its backtrace beginning with a newline character, if any; otherwise, an empty string.
  109. # For details see:
  110. # https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html
  111. # https://docs.oracle.com/javase/8/docs/api/java/util/logging/SimpleFormatter.html#format-java.util.logging.LogRecord-
  112. format: "[%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$s]: %5$s%6$s%n"
  113.  
  114. super-pickaxe:
  115. drop-items: true
  116. many-drop-items: false
  117.  
  118. snapshots:
  119. directory:
  120.  
  121. navigation-wand:
  122. item: minecraft:compass
  123. max-distance: 100
  124.  
  125. scripting:
  126. timeout: 3000
  127. dir: craftscripts
  128.  
  129. saving:
  130. dir: schematics
  131.  
  132. files:
  133. allow-symbolic-links: false
  134.  
  135. history:
  136. size: 15
  137. expiration: 10
  138.  
  139. calculation:
  140. timeout: 100
  141.  
  142. debugging:
  143. trace-unflushed-sessions: false
  144.  
  145. wand-item: minecraft:wooden_axe
  146. shell-save-type:
  147. no-double-slash: false
  148. no-op-permissions: false
  149. debug: false
  150. show-help-on-first-use: true
  151. server-side-cui: true
Add Comment
Please, Sign In to add comment