Skip to content

Commit a6ccd51

Browse files
committed
fix: Improve comment of config option for more clarity #1111
1 parent 57d2ba8 commit a6ccd51

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/WaystonesConfig.java

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

151-
@Comment("List of dimensions that wild waystones are allowed to spawn in. If left empty, all dimensions except those in wildWaystonesDimensionDenyList are used.")
151+
@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.")
152152
@NestedType(Identifier.class)
153153
public Set<Identifier> wildWaystonesDimensionAllowList = Set.of(Identifier.withDefaultNamespace("overworld"), Identifier.withDefaultNamespace("the_nether"), Identifier.withDefaultNamespace("the_end"));
154154

155-
@Comment("List of dimensions that wild waystones are not allowed to spawn in. Only used if wildWaystonesDimensionAllowList is empty.")
155+
@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.")
156156
@NestedType(Identifier.class)
157157
public Set<Identifier> wildWaystonesDimensionDenyList = Set.of();
158158

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)