You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: common/src/main/resources/de/bluecolored/bluemap/config/core.conf
+20-19Lines changed: 20 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -3,46 +3,47 @@
3
3
## Core-Config ##
4
4
## ##
5
5
6
-
# By changing the setting (accept-download) below to TRUE you are indicating that you have accepted mojang's EULA (https://account.mojang.com/documents/minecraft_eula),
7
-
# you confirm that you own a license to Minecraft (Java Edition)
8
-
# and you agree that BlueMap will download and use a minecraft-client file (depending on the minecraft-version) from mojangs servers (https://piston-meta.mojang.com/) for you.
9
-
# This file contains resources that belong to mojang and you must not redistribute it or do anything else that is not compliant with mojang's EULA.
10
-
# BlueMap uses resources in this file to generate the 3D-Models used for the map and texture them. (BlueMap will not work without those resources.)
6
+
# By changing the setting (accept-download) below to TRUE you are indicating that you have accepted Mojang's EULA (https://account.mojang.com/documents/minecraft_eula),
7
+
# you confirm that you own a license to Minecraft (Java Edition),
8
+
# and you agree that BlueMap will download and use a Minecraft client file (depending on the Minecraft version) from Mojang's servers (https://piston-meta.mojang.com/) for you.
9
+
# This file contains resources that belong to Mojang and you must not redistribute it or do anything else that is not compliant with Mojang's EULA.
10
+
# BlueMap uses resources in this file to generate the 3D models used for the map and texture them. Without these, BlueMap will not work.
11
11
# ${timestamp}
12
12
accept-download: false
13
13
14
-
# The folder where bluemap saves data-files it needs during runtime or to save e.g. the render-progress to resume it later.
14
+
# The folder where BlueMap saves data files it needs during runtime.
15
+
# For example, the render progress file, which is used to resume the render across restarts.
15
16
# Default is "bluemap"
16
17
data: "${data}"
17
18
18
19
# This changes the amount of threads that BlueMap will use to render the maps.
19
-
# A higher value can improve render-speed but could impact performance on the host machine.
20
-
# This should be always below or equal to the number of available processor-cores.
21
-
# Zero or a negative value means the amount of available processor-cores subtracted by the value.
22
-
# (So a value of -2 with 6 cores results in 4 render-processes)
20
+
# A higher value can improve the renderspeed, but could impact performance on the host machine.
21
+
# This should be always below or equal to the number of available processorcores.
22
+
# Zero or a negative value means the amount of available processorcores subtracted by the value.
23
+
# For example, on a machine with 6 cores, a value of -2 would result in 4 render threads.
23
24
# Default is 1
24
25
render-thread-count: ${render-thread-count}
25
26
26
-
# Controls whether BlueMap should try to find and load mod-resources and datapacks from the server/world-directories.
27
+
# Controls whether BlueMap should try to find and load modresources and datapacks from the server/worlddirectories.
27
28
# Default is true
28
29
scan-for-mod-resources: true
29
30
${metrics<<
30
-
# If this is true, BlueMap might send really basic metrics reports containing only the implementation-type and the version that is being used to https://metrics.bluecolored.de/bluemap/
31
+
# If this is true, BlueMap might send really basic metric reports containing only the implementationtype and the version that is being used to https://metrics.bluecolored.de/bluemap/
31
32
# This allows me to track the basic usage of BlueMap and helps me stay motivated to further develop this tool! Please leave it on :)
32
33
# An example report looks like this: {"implementation":"${implementation}","version":"${version}","mcVersion":"${mcVersion}"}
33
34
# Default is true
34
35
metrics: true
35
36
>>}
36
-
# Config-section for debug-logging
37
+
# Config-section for debuglogging:
37
38
log: {
38
-
# The file where the debug-log will be written to.
39
-
# Comment out to disable debug-logging completely.
40
-
# Java String formatting syntax can be used to add time, see: https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html
41
-
# Default is no logging
39
+
# The file where the debuglog will be written to.
40
+
# Comment out to disable debuglogging completely.
41
+
# Java String formatting syntax can be used to add timestamps, see: https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html
42
+
# Default is no logging.
42
43
file: "${logfile}"
43
44
#file: "${logfile-with-time}"
44
45
45
-
# Whether the logger should append to an existing file, or overwrite it
46
-
# Default is false
46
+
# Whether the logger should append to an existing file, or overwrite it.
0 commit comments