Skip to content

Commit 0f3a0b2

Browse files
committed
fix: Improve comment of config option for more clarity #1111
1 parent 32d1882 commit 0f3a0b2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

common/src/main/java/net/blay09/mods/waystones/config/WaystonesConfigData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,11 @@ public static class WorldGen {
127127
@Comment("Approximate chunk distance between wild waystones being generated. Set to 0 to disable generation.")
128128
public int chunksBetweenWildWaystones = 25;
129129

130-
@Comment("List of dimensions that wild waystones are allowed to spawn in. If left empty, all dimensions except those in wildWaystonesDimensionDenyList are used.")
130+
@Comment("List of dimensions that wild waystones are allowed to spawn in. If left empty, all dimensions except those in wildWaystonesDimensionDenyList will be able to spawn waystones, provided the biomes are in the `has_structure/waystone` tag.")
131131
@ExpectedType(ResourceLocation.class)
132132
public Set<ResourceLocation> wildWaystonesDimensionAllowList = Set.of(ResourceLocation.withDefaultNamespace("overworld"), ResourceLocation.withDefaultNamespace("the_nether"), ResourceLocation.withDefaultNamespace("the_end"));
133133

134-
@Comment("List of dimensions that wild waystones are not allowed to spawn in. Only used if wildWaystonesDimensionAllowList is empty.")
134+
@Comment("List of dimensions that wild waystones are not allowed to spawn in, even if the biome is in the `has_structure/waystone` tag. Only used if wildWaystonesDimensionAllowList is empty.")
135135
@ExpectedType(ResourceLocation.class)
136136
public Set<ResourceLocation> wildWaystonesDimensionDenyList = Set.of();
137137

common/src/main/resources/assets/waystones/lang/en_us.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@
222222
"waystones.configuration.worldGen.chunksBetweenWildWaystones": "Chunks Between Wild Waystones",
223223
"waystones.configuration.worldGen.chunksBetweenWildWaystones.tooltip": "Approximate chunk distance between wild waystones being generated. Set to 0 to disable generation.",
224224
"waystones.configuration.worldGen.wildWaystonesDimensionAllowList": "Dimension Allow List",
225-
"waystones.configuration.worldGen.wildWaystonesDimensionAllowList.tooltip": "List of dimensions that wild waystones are allowed to spawn in. If left empty, all dimensions except those in wildWaystonesDimensionDenyList are used.",
225+
"waystones.configuration.worldGen.wildWaystonesDimensionAllowList.tooltip": "List of dimensions that wild waystones are allowed to spawn in. If left empty, all dimensions except those in wildWaystonesDimensionDenyList will be able to spawn waystones, provided the biomes are in the `has_structure/waystone` tag.",
226226
"waystones.configuration.worldGen.wildWaystonesDimensionDenyList": "Dimension Deny List",
227-
"waystones.configuration.worldGen.wildWaystonesDimensionDenyList.tooltip": "List of dimensions that wild waystones are not allowed to spawn in. Only used if wildWaystonesDimensionAllowList is empty.",
227+
"waystones.configuration.worldGen.wildWaystonesDimensionDenyList.tooltip": "List of dimensions that wild waystones are not allowed to spawn in, even if the biome is in the `has_structure/waystone` tag. Only used if wildWaystonesDimensionAllowList is empty.",
228228
"waystones.configuration.worldGen.nameGenerationMode": "Name Generation Mode",
229229
"waystones.configuration.worldGen.nameGenerationMode.tooltip": "Set to 'PRESET_FIRST' to first use names from the nameGenerationPresets. Set to 'PRESET_ONLY' to use only those custom names. Set to 'MIXED' to have some waystones use custom names, and others random names.",
230230
"waystones.configuration.worldGen.nameGenerationTemplate": "Name Generation Template",

0 commit comments

Comments
 (0)