Advertisement
Guest User

Dynmap config - webp tiles are empty files

a guest
Apr 11th, 2023
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.90 KB | None | 0 0
  1. # All paths in this configuration file are relative to Dynmap's data-folder: minecraft_server/plugins/dynmap/
  2.  
  3. # All map templates are defined in the templates directory
  4. # To use the HDMap very-low-res (2 ppb) map templates as world defaults, set value to vlowres
  5. # The definitions of these templates are in normal-vlowres.txt, nether-vlowres.txt, and the_end-vlowres.txt
  6. # To use the HDMap low-res (4 ppb) map templates as world defaults, set value to lowres
  7. # The definitions of these templates are in normal-lowres.txt, nether-lowres.txt, and the_end-lowres.txt
  8. # To use the HDMap hi-res (16 ppb) map templates (these can take a VERY long time for initial fullrender), set value to hires
  9. # The definitions of these templates are in normal-hires.txt, nether-hires.txt, and the_end-hires.txt
  10. # To use the HDMap low-res (4 ppb) map templates, with support for boosting resolution selectively to hi-res (16 ppb), set value to low_boost_hi
  11. # The definitions of these templates are in normal-low_boost_hi.txt, nether-low_boost_hi.txt, and the_end-low_boost_hi.txt
  12. # To use the HDMap hi-res (16 ppb) map templates, with support for boosting resolution selectively to vhi-res (32 ppb), set value to hi_boost_vhi
  13. # The definitions of these templates are in normal-hi_boost_vhi.txt, nether-hi_boost_vhi.txt, and the_end-hi_boost_vhi.txt
  14. # To use the HDMap hi-res (16 ppb) map templates, with support for boosting resolution selectively to xhi-res (64 ppb), set value to hi_boost_xhi
  15. # The definitions of these templates are in normal-hi_boost_xhi.txt, nether-hi_boost_xhi.txt, and the_end-hi_boost_xhi.txt
  16. deftemplatesuffix: lowres
  17.  
  18. # Set default tile scale (0 = 128px x 128x, 1 = 256px x 256px, 2 = 512px x 512px, 3 = 1024px x 1024px, 4 = 2048px x 2048px) - 0 is default
  19. # Note: changing this value will result in all maps that use the default value being required to be fully rendered
  20. defaulttilescale: 1
  21.  
  22. # Map storage scheme: only uncomment one 'type' value
  23. # filetree: classic and default scheme: tree of files, with all map data under the directory indicated by 'tilespath' setting
  24. # sqlite: single SQLite database file (this can get VERY BIG), located at 'dbfile' setting (default is file dynmap.db in data directory)
  25. # mysql: MySQL database, at hostname:port in database, accessed via userid with password
  26. # mariadb: MariaDB database, at hostname:port in database, accessed via userid with password
  27. # postgres: PostgreSQL database, at hostname:port in database, accessed via userid with password
  28. storage:
  29. # Filetree storage (standard tree of image files for maps)
  30. type: filetree
  31. # SQLite db for map storage (uses dbfile as storage location)
  32. #type: sqlite
  33. #dbfile: dynmap.db
  34. # MySQL DB for map storage (at 'hostname':'port' with flags "flags" in database 'database' using user 'userid' password 'password' and table prefix 'prefix')
  35. #type: mysql
  36. #hostname: localhost
  37. #port: 3306
  38. #database: dynmap
  39. #userid: dynmap
  40. #password: dynmap
  41. #prefix: ""
  42. #flags: "?allowReconnect=true&autoReconnect=true"
  43. #
  44. # AWS S3 backet web site
  45. #type: aws_s3
  46. #bucketname: "dynmap-bucket-name"
  47. #region: us-east-1
  48. #aws_access_key_id: "<aws-access-key-id>"
  49. #aws_secret_access_key: "<aws-secret-access-key>"
  50.  
  51. components:
  52. - class: org.dynmap.ClientConfigurationComponent
  53.  
  54. ### INTERNAL WEBSERVER CONFIG
  55. #
  56. # - class: org.dynmap.InternalClientUpdateComponent
  57. # sendhealth: true
  58. # sendposition: true
  59. # allowwebchat: false
  60. # webchat-interval: 5
  61. # hidewebchatip: true
  62. # trustclientname: false
  63. # includehiddenplayers: true
  64. # # (optional) if true, color codes in player display names are used
  65. # use-name-colors: false
  66. # # (optional) if true, player login IDs will be used for web chat when their IPs match
  67. # use-player-login-ip: false
  68. # # (optional) if use-player-login-ip is true, setting this to true will cause chat messages not matching a known player IP to be ignored
  69. # require-player-login-ip: false
  70. # # (optional) block player login IDs that are banned from chatting
  71. # block-banned-player-chat: true
  72. # # Require login for web-to-server chat (requires login-enabled: true)
  73. # webchat-requires-login: false
  74. # # If set to true, users must have dynmap.webchat permission in order to chat
  75. # webchat-permissions: false
  76. # # Limit length of single chat messages
  77. # chatlengthlimit: 256
  78. # # # Optional - make players hidden when they are inside/underground/in shadows (#=light level: 0=full shadow,15=sky)
  79. # # hideifshadow: 4
  80. # # # Optional - make player hidden when they are under cover (#=sky light level,0=underground,15=open to sky)
  81. # # hideifundercover: 14
  82. # # # (Optional) if true, players that are crouching/sneaking will be hidden
  83. # hideifsneaking: false
  84. # # If true, player positions/status is protected (login with ID with dynmap.playermarkers.seeall permission required for info other than self)
  85. # protected-player-info: false
  86. # # If true, hide players with invisibility potion effects active
  87. # hide-if-invisiblity-potion: false
  88. # # If true, player names are not shown on map, chat, list
  89. # hidenames: false
  90.  
  91. ### EXTERNAL WEBSERVER CONFIG
  92. #
  93. - class: org.dynmap.JsonFileClientUpdateComponent
  94. writeinterval: 1
  95. sendhealth: true
  96. sendposition: true
  97. allowwebchat: false
  98. webchat-interval: 5
  99. hidewebchatip: true
  100. includehiddenplayers: true
  101. use-name-colors: false
  102. use-player-login-ip: false
  103. require-player-login-ip: false
  104. block-banned-player-chat: true
  105. #hideifshadow: 0
  106. #hideifundercover: 0
  107. hideifsneaking: false
  108. # Require login for web-to-server chat (requires login-enabled: true)
  109. webchat-requires-login: false
  110. # If set to true, users must have dynmap.webchat permission in order to chat
  111. webchat-permissions: false
  112. # Limit length of single chat messages
  113. chatlengthlimit: 256
  114. hide-if-invisiblity-potion: false
  115. hidenames: false
  116.  
  117. - class: org.dynmap.SimpleWebChatComponent
  118. allowchat: true
  119. # If true, web UI users can supply name for chat using 'playername' URL parameter. 'trustclientname' must also be set true.
  120. allowurlname: false
  121.  
  122. # Note: this component is needed for the dmarker commands, and for the Marker API to be available to other plugins
  123. - class: org.dynmap.MarkersComponent
  124. type: markers
  125. showlabel: true
  126. enablesigns: false
  127. # Default marker set for sign markers
  128. default-sign-set: markers
  129. # (optional) add spawn point markers to standard marker layer
  130. showspawn: true
  131. spawnicon: world
  132. spawnlabel: "Spawn"
  133. # (optional) layer for showing offline player's positions (for 'maxofflinetime' minutes after logoff)
  134. showofflineplayers: false
  135. offlinelabel: "Offline"
  136. offlineicon: offlineuser
  137. offlinehidebydefault: false
  138. offlineminzoom: 3
  139. maxofflinetime: 30
  140. # (optional) layer for showing player's spawn beds
  141. showspawnbeds: false
  142. spawnbedlabel: "Spawn Beds"
  143. spawnbedicon: bed
  144. spawnbedhidebydefault: true
  145. spawnbedminzoom: 0
  146. spawnbedformat: "%name%'s bed"
  147. # (optional) show world border (vanilla 1.8+)
  148. showworldborder: false
  149. worldborderlabel: "Border"
  150.  
  151. - class: org.dynmap.ClientComponent
  152. type: chat
  153. allowurlname: false
  154. - class: org.dynmap.ClientComponent
  155. type: chatballoon
  156. focuschatballoons: false
  157. - class: org.dynmap.ClientComponent
  158. type: chatbox
  159. showplayerfaces: true
  160. messagettl: 60
  161. # Optional: set number of lines in scrollable message history: if set, messagettl is not used to age out messages
  162. scrollback: 64
  163. # Optional: set maximum number of lines visible for chatbox
  164. visiblelines: 8
  165. # Optional: send push button
  166. sendbutton: false
  167. - class: org.dynmap.ClientComponent
  168. type: playermarkers
  169. showplayerfaces: true
  170. showplayerhealth: true
  171. # If true, show player body too (only valid if showplayerfaces=true)
  172. showplayerbody: true
  173. # Option to make player faces small - don't use with showplayerhealth or largeplayerfaces
  174. smallplayerfaces: false
  175. # Option to make player faces larger - don't use with showplayerhealth or smallplayerfaces
  176. largeplayerfaces: false
  177. # Optional - make player faces layer hidden by default
  178. hidebydefault: false
  179. # Optional - ordering priority in layer menu (low goes before high - default is 0)
  180. layerprio: 0
  181. # Optional - label for player marker layer (default is 'Players')
  182. label: "Players"
  183.  
  184. - class: org.dynmap.ClientComponent
  185. type: digitalclock
  186. #- class: org.dynmap.ClientComponent
  187. # type: link
  188.  
  189. - class: org.dynmap.ClientComponent
  190. type: timeofdayclock
  191. showdigitalclock: true
  192. showweather: true
  193. # Mouse pointer world coordinate display
  194. - class: org.dynmap.ClientComponent
  195. type: coord
  196. label: "Location"
  197. hidey: true
  198. show-mcr: false
  199. show-chunk: false
  200.  
  201. # Note: more than one logo component can be defined
  202. #- class: org.dynmap.ClientComponent
  203. # type: logo
  204. # text: "Dynmap"
  205. # #logourl: "images/block_surface.png"
  206. # linkurl: "http://forums.bukkit.org/threads/dynmap.489/"
  207. # # Valid positions: top-left, top-right, bottom-left, bottom-right
  208. # position: bottom-right
  209.  
  210. #- class: org.dynmap.ClientComponent
  211. # type: inactive
  212. # timeout: 1800 # in seconds (1800 seconds = 30 minutes)
  213. # redirecturl: inactive.html
  214. # #showmessage: 'You were inactive for too long.'
  215.  
  216. #- class: org.dynmap.TestComponent
  217. # stuff: "This is some configuration-value"
  218.  
  219. # Treat hiddenplayers.txt as a whitelist for players to be shown on the map? (Default false)
  220. display-whitelist: false
  221.  
  222. # How often a tile gets rendered (in seconds).
  223. renderinterval: 1
  224.  
  225. # How many tiles on update queue before accelerate render interval
  226. renderacceleratethreshold: 60
  227.  
  228. # How often to render tiles when backlog is above renderacceleratethreshold
  229. renderaccelerateinterval: 0.2
  230.  
  231. # How many update tiles to work on at once (if not defined, default is 1/2 the number of cores)
  232. tiles-rendered-at-once: 2
  233.  
  234. # If true, use normal priority threads for rendering (versus low priority) - this can keep rendering
  235. # from starving on busy Windows boxes (Linux JVMs pretty much ignore thread priority), but may result
  236. # in more competition for CPU resources with other processes
  237. usenormalthreadpriority: true
  238.  
  239. # Save and restore pending tile renders - prevents their loss on server shutdown or /reload
  240. saverestorepending: true
  241.  
  242. # Save period for pending jobs (in seconds): periodic saving for crash recovery of jobs
  243. save-pending-period: 900
  244.  
  245. # Zoom-out tile update period - how often to scan for and process tile updates into zoom-out tiles (in seconds)
  246. zoomoutperiod: 30
  247.  
  248. # Control whether zoom out tiles are validated on startup (can be needed if zoomout processing is interrupted, but can be expensive on large maps)
  249. initial-zoomout-validate: true
  250.  
  251. # Default delay on processing of updated tiles, in seconds. This can reduce potentially expensive re-rendering
  252. # of frequently updated tiles (such as due to machines, pistons, quarries or other automation). Values can
  253. # also be set on individual worlds and individual maps.
  254. tileupdatedelay: 600
  255.  
  256. # Tile hashing is used to minimize tile file updates when no changes have occurred - set to false to disable
  257. enabletilehash: true
  258.  
  259. # Optional - hide ores: render as normal stone (so that they aren't revealed by maps)
  260. #hideores: true
  261.  
  262. # Optional - enabled BetterGrass style rendering of grass and snow block sides
  263. better-grass: true
  264.  
  265. # Optional - enable smooth lighting by default on all maps supporting it (can be set per map as lighting option)
  266. smooth-lighting: true
  267.  
  268. # Optional - use world provider lighting table (good for custom worlds with custom lighting curves, like nether)
  269. # false=classic Dynmap lighting curve
  270. use-brightness-table: true
  271.  
  272. # Optional - render specific block names using the textures and models of another block name: can be used to hide/disguise specific
  273. # blocks (e.g. make ores look like stone, hide chests) or to provide simple support for rendering unsupported custom blocks
  274. block-alias:
  275. # "minecraft:quartz_ore": "stone"
  276. # "diamond_ore": "coal_ore"
  277.  
  278. # Default image format for HDMaps (png, jpg, jpg-q75, jpg-q80, jpg-q85, jpg-q90, jpg-q95, jpg-q100, webp, webp-q75, webp-q80, webp-q85, webp-q90, webp-q95, webp-q100, webp-l),
  279. # Note: any webp format requires the presence of the 'webp command line tools' (cwebp, dwebp) (https://developers.google.com/speed/webp/download)
  280. #
  281. # Has no effect on maps with explicit format settings
  282. image-format: webp-q90
  283.  
  284. # If cwebp or dwebp are not on the PATH, use these settings to provide their full path. Do not use these settings if the tools are on the PATH
  285. # For Windows, include .exe
  286. #
  287. cwebpPath: /minecraft/plugins/dynmap/webp/cwebp
  288. dwebpPath: /minecraft/plugins/dynmap/webp/dwebp
  289.  
  290. # use-generated-textures: if true, use generated textures (same as client); false is static water/lava textures
  291. # correct-water-lighting: if true, use corrected water lighting (same as client); false is legacy water (darker)
  292. # transparent-leaves: if true, leaves are transparent (lighting-wise): false is needed for some Spout versions that break lighting on leaf blocks
  293. use-generated-textures: true
  294. correct-water-lighting: true
  295. transparent-leaves: true
  296.  
  297. # ctm-support: if true, Connected Texture Mod (CTM) in texture packs is enabled (default)
  298. ctm-support: true
  299. # custom-colors-support: if true, Custom Colors in texture packs is enabled (default)
  300. custom-colors-support: true
  301.  
  302. # Control loading of player faces (if set to false, skins are never fetched)
  303. fetchskins: true
  304.  
  305. # Control updating of player faces, once loaded (if faces are being managed by other apps or manually)
  306. #refreshskins: false
  307.  
  308. # Customize URL used for fetching player skins (%player% is macro for name, %uuid% for UUID)
  309. skin-url: "https://cravatar.eu/helmavatar/%player%/128"
  310.  
  311. # Enable skins via SkinsRestorer plugin instead of internal legacy implementation (disabled by default)
  312. skinsrestorer-integration: true
  313.  
  314. render-triggers:
  315. #- playermove
  316. #- playerjoin
  317. - blockplaced
  318. - blockbreak
  319. - leavesdecay
  320. - blockburn
  321. - chunkgenerated
  322. - blockformed
  323. - blockfaded
  324. - blockspread
  325. - pistonmoved
  326. - explosion
  327. #- blockfromto
  328. #- blockphysics
  329. - structuregrow
  330. - blockgrow
  331. #- blockredstone
  332.  
  333. # Title for the web page - if not specified, defaults to the server's name (unless it is the default of 'Unknown Server')
  334. #webpage-title: "Peanut's Minecraft Map"
  335.  
  336. # The path where the tile-files are placed.
  337. tilespath: /dynmap/tiles
  338.  
  339. # The path where the web-files are located.
  340. webpath: /dynmap
  341.  
  342. # If set to false, disable extraction of webpath content (good if using custom web UI or 3rd party web UI)
  343. # Note: web interface is unsupported in this configuration - you're on your own
  344. update-webpath-files: false
  345.  
  346. # The path were the /dynmapexp command exports OBJ ZIP files
  347. exportpath: export
  348.  
  349. # The network-interface the webserver will bind to (0.0.0.0 for all interfaces, 127.0.0.1 for only local access).
  350. # If not set, uses same setting as server in server.properties (or 0.0.0.0 if not specified)
  351. #webserver-bindaddress: 0.0.0.0
  352.  
  353. # The TCP-port the webserver will listen on.
  354. webserver-port: 8123
  355.  
  356. # Maximum concurrent session on internal web server - limits resources used in Bukkit server
  357. max-sessions: 30
  358.  
  359. # Disables Webserver portion of Dynmap (Advanced users only)
  360. disable-webserver: true
  361.  
  362. # Enable/disable having the web server allow symbolic links (true=compatible with existing code, false=more secure (default))
  363. allow-symlinks: true
  364.  
  365. # Enable login support
  366. login-enabled: false
  367. # Require login to access website (requires login-enabled: true)
  368. login-required: false
  369.  
  370. # Period between tile renders for fullrender, in seconds (non-zero to pace fullrenders, lessen CPU load)
  371. timesliceinterval: 0.0
  372.  
  373. # Maximum chunk loads per server tick (1/20th of a second) - reducing this below 90 will impact render performance, but also will reduce server thread load
  374. maxchunkspertick: 200
  375.  
  376. # Progress report interval for fullrender/radiusrender, in tiles. Must be 100 or greater
  377. progressloginterval: 1000
  378.  
  379. # Parallel fullrender: if defined, number of concurrent threads used for fullrender or radiusrender
  380. # Note: setting this will result in much more intensive CPU use, some additional memory use. Caution should be used when
  381. # setting this to equal or exceed the number of physical cores on the system.
  382. #parallelrendercnt: 4
  383.  
  384. # Interval the browser should poll for updates.
  385. updaterate: 5000
  386.  
  387. # If nonzero, server will pause fullrender/radiusrender processing when 'fullrenderplayerlimit' or more users are logged in
  388. fullrenderplayerlimit: 0
  389. # If nonzero, server will pause update render processing when 'updateplayerlimit' or more users are logged in
  390. updateplayerlimit: 0
  391. # Target limit on server thread use - msec per tick
  392. per-tick-time-limit: 50
  393. # If TPS of server is below this setting, update renders processing is paused
  394. update-min-tps: 18.0
  395. # If TPS of server is below this setting, full/radius renders processing is paused
  396. fullrender-min-tps: 19.0
  397. # If TPS of server is below this setting, zoom out processing is paused
  398. zoomout-min-tps: 18.0
  399.  
  400. showplayerfacesinmenu: true
  401.  
  402. # Control whether players that are hidden or not on current map are grayed out (true=yes)
  403. grayplayerswhenhidden: true
  404.  
  405. # Use player permissions to order player list: first to last, players are ordered by first permission listed that they have
  406. # That is, anyone with first listed permission goes before anyone with second, etc, with users with none of the nodes going last
  407. player-sort-permission-nodes:
  408. - bukkit.command.op
  409.  
  410. # Set sidebaropened: 'true' to pin menu sidebar opened permanently, 'pinned' to default the sidebar to pinned, but allow it to unpin
  411. #sidebaropened: true
  412.  
  413. # Customized HTTP response headers - add 'id: value' pairs to all HTTP response headers (internal web server only)
  414. #http-response-headers:
  415. # Access-Control-Allow-Origin: "my-domain.com"
  416. # X-Custom-Header-Of-Mine: "MyHeaderValue"
  417.  
  418. # Trusted proxies for web server - which proxy addresses are trusted to supply valid X-Forwarded-For fields
  419. # This now supports both IP address, and subnet ranges (e.g. 192.168.1.0/24 or 202.24.0.0/14 )
  420. trusted-proxies:
  421. - "127.0.0.1"
  422. - "0:0:0:0:0:0:0:1"
  423.  
  424. # Join/quit message format for web chat: set to "" to disable notice on web UI
  425. joinmessage: "%playername% joined the game"
  426. quitmessage: "%playername% left the game"
  427.  
  428. spammessage: "You may only chat once every %interval% seconds."
  429. # format for messages from web: %playername% substitutes sender ID (typically IP), %message% includes text
  430. webmsgformat: "&color;2[WEB] %playername%: &color;f%message%"
  431.  
  432. # Control whether layer control is presented on the UI (default is true)
  433. showlayercontrol: true
  434.  
  435. # Enable checking for banned IPs via banned-ips.txt (internal web server only)
  436. check-banned-ips: true
  437.  
  438. # Default selection when map page is loaded
  439. defaultzoom: 2
  440. defaultworld: world
  441. defaultmap: surface_southeast
  442. # (optional) Zoom level and map to switch to when following a player, if possible
  443. followzoom: 4
  444. followmap: surface
  445.  
  446. # If true, make persistent record of IP addresses used by player logins, to support web IP to player matching
  447. persist-ids-by-ip: false
  448.  
  449. # If true, map text to cyrillic
  450. cyrillic-support: false
  451.  
  452. # If true, coordinates will be rounded
  453. round-coordinates: true
  454.  
  455. # Messages to customize
  456. msg:
  457. maptypes: "Map Types"
  458. players: "Players"
  459. chatrequireslogin: "Chat Requires Login"
  460. chatnotallowed: "You are not permitted to send chat messages"
  461. hiddennamejoin: "Player joined"
  462. hiddennamequit: "Player quit"
  463.  
  464. # URL for client configuration (only need to be tailored for proxies or other non-standard configurations)
  465. url:
  466. # configuration URL
  467. #configuration: "up/configuration"
  468. # update URL
  469. #update: "up/world/{world}/{timestamp}"
  470. # sendmessage URL
  471. #sendmessage: "up/sendmessage"
  472. # login URL
  473. #login: "up/login"
  474. # register URL
  475. #register: "up/register"
  476. # tiles base URL
  477. #tiles: "tiles/"
  478. # markers base URL
  479. #markers: "tiles/"
  480.  
  481. # Customization commands - allows scripts to be run before/after certain events
  482. custom-commands:
  483. image-updates:
  484. # Command run just before any image file is written or updated: run with single parameter with fully qualified file name
  485. preupdatecommand: ""
  486. # Command run just after any image file is written or updated: run with single parameter with fully qualified file name
  487. postupdatecommand: ""
  488.  
  489. # Snapshot cache size, in chunks
  490. snapshotcachesize: 500
  491. # Snapshot cache uses soft references (true), else weak references (false)
  492. soft-ref-cache: true
  493.  
  494. # Player enter/exit title messages for map markers
  495. #
  496. # Processing period - how often to check player positions vs markers - default is 1000ms (1 second)
  497. #enterexitperiod: 1000
  498. # Title message fade in time, in ticks (0.05 second intervals) - default is 10 (1/2 second)
  499. #titleFadeIn: 10
  500. # Title message stay time, in ticks (0.05 second intervals) - default is 70 (3.5 seconds)
  501. #titleStay: 70
  502. # Title message fade out time, in ticks (0.05 seocnd intervals) - default is 20 (1 second)
  503. #titleFadeOut: 20
  504. # Enter/exit messages use on screen titles (true - default), if false chat messages are sent instead
  505. #enterexitUseTitle: true
  506. # Set true if new enter messages should supercede pending exit messages (vs being queued in order), default false
  507. #enterReplacesExits: true
  508.  
  509. # Published public URL for Dynmap server (allows users to use 'dynmap url' command to get public URL usable to access server
  510. # If not set, 'dynmap url' will not return anything. URL should be fully qualified (e.g. https://mc.westeroscraft.com/)
  511. #publicURL: http://my.greatserver.com/dynmap
  512.  
  513. # Send this message if the player does not have permission to use the command
  514. noPermissionMsg: "You don't have permission to use this command!"
  515.  
  516. # Set to true to enable verbose startup messages - can help with debugging map configuration problems
  517. # Set to false for a much quieter startup log
  518. verbose: false
  519.  
  520. # Enables debugging.
  521. #debuggers:
  522. # - class: org.dynmap.debug.LogDebugger
  523. # Debug: dump blocks missing render data
  524. dump-missing-blocks: false
  525.  
  526. # Have dynmap migrate old chunks to the new format for the current MC version (specifically, for migrating pre-1.13 chunks to 1.13 or 1.14). This is needed
  527. # in order to render chunks on an upgraded server (due to various bugs/limitations in CB/spigot 1.13+). This setting is NOT suggested to be enabled full time,
  528. # but only long enough to do a fullrender of a migrated world - it should be turned back off once worlds are migrated). It is EXPERIMENTAL, so be sure to backup
  529. # your worlds before running with this setting enabled (set to true)
  530. #
  531. #migrate-chunks: true
  532.  
  533. # Log4J defense: string substituted for attempts to use macros in web chat
  534. hackAttemptBlurb: "(IaM5uchA1337Haxr-Ban Me!)"
  535.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement