forked from AllTheMods/ATM-10
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
57efc57
commit d1a0a93
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
[General] | ||
#Allows a player to teleport to a located structure when in creative mode, opped, or in cheat mode. | ||
allowTeleport = false | ||
#Allows players to view the precise coordinates and distance of a located structure on the HUD, rather than relying on the direction the compass is pointing. | ||
displayCoordinates = true | ||
#The maximum radius that will be searched for a structure. Raising this value will increase search accuracy but will potentially make the process more resource intensive. | ||
#Range: 0 ~ 1000000 | ||
maxRadius = 5000 | ||
#A list of structures that the compass will not display in the GUI and will not be able to search for. Wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex: ["minecraft:stronghold", "minecraft:endcity", "minecraft:*village*"] | ||
structureBlacklist = [] | ||
#The maximum number of samples to be taken when searching for a structure. | ||
#Range: 0 ~ 100000000 | ||
maxSamples = 50000 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
[General] | ||
#Allows a player to teleport to a located biome when in creative mode, opped, or in cheat mode. | ||
allowTeleport = false | ||
#Allows players to view the precise coordinates and distance of a located structure on the HUD, rather than relying on the direction the compass is pointing. | ||
displayCoordinates = true | ||
#biomeSize * radiusModifier = maxSearchRadius. Raising this value will increase search accuracy but will potentially make the process more resource . | ||
#Range: 0 ~ 1000000 | ||
radiusModifier = 2500 | ||
#biomeSize * sampleSpaceModifier = sampleSpace. Lowering this value will increase search accuracy but will make the process more resource intensive. | ||
#Range: 0 ~ 1000000 | ||
sampleSpaceModifier = 16 | ||
#A list of biomes that the compass will not be able to search for, specified by resource location. The wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex: ["minecraft:savanna", "minecraft:desert", "minecraft:*ocean*"] | ||
biomeBlacklist = [] | ||
#The maximum number of samples to be taken when searching for a biome. | ||
#Range: 0 ~ 1000000 | ||
maxSamples = 50000 | ||
|