Skip to content

Commit 8ddae9a

Browse files
committed
Release 2.14.3
Signed-off-by: Alexander Brandes <[email protected]>
1 parent a29a58a commit 8ddae9a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ext {
3030
}
3131
}
3232

33-
version = String.format("%s-%s", rootVersion, buildNumber)
33+
version = String.format("%s", rootVersion)
3434

3535
if (!project.hasProperty("gitCommitHash")) {
3636
apply(plugin = "org.ajoberstar.grgit")

worldedit-core/src/main/java/com/fastasyncworldedit/core/function/generator/OreGen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public OreGen(Extent extent, Mask mask, Pattern pattern, int size, int minY, int
4242
* @param maxY max Y to consider generation from (important for triangular generation)
4343
* @param triangular if a triangular distribution of ores should be used (rather than flat)
4444
* @throws WorldEditException on error
45-
* @since TODO
45+
* @since 2.14.3
4646
*/
4747
public OreGen(
4848
Extent extent,

worldedit-core/src/main/java/com/sk89q/worldedit/extent/Extent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ default void addOre(
602602
* @param maxY max Y to consider generation from (important for triangular generation)
603603
* @param triangular if a triangular distribution of ores should be used (rather than flat)
604604
* @throws WorldEditException on error
605-
* @since TODO
605+
* @since 2.14.3
606606
*/
607607
default void addOre(
608608
Region region,
@@ -635,7 +635,7 @@ default void addOres(Region region, Mask mask) throws WorldEditException {
635635
* @param deepslateBelowZero if ores should be their deepslate equivalent below zero (overrides deepslateWhereDeepslate)
636636
* @param deepslateWhereDeepslate if ores should be their deepslate equivalent if the existing block is deepslate
637637
* @throws WorldEditException on error
638-
* @since TODO
638+
* @since 2.14.3
639639
*/
640640
default void addOres(Region region, Mask mask, boolean deepslateBelowZero, boolean deepslateWhereDeepslate) throws
641641
WorldEditException {

0 commit comments

Comments
 (0)