mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-06-19 07:11:14 +00:00
Bump tectonic version
This commit is contained in:
+1
-1
@@ -56,7 +56,7 @@ dependencies {
|
|||||||
|
|
||||||
implementation("net.jafama:jafama:2.3.2")
|
implementation("net.jafama:jafama:2.3.2")
|
||||||
|
|
||||||
implementation(name = "Tectonic-0.1.0", group = "")
|
implementation(name = "Tectonic-1.0.0", group = "")
|
||||||
|
|
||||||
|
|
||||||
// JUnit.
|
// JUnit.
|
||||||
|
|||||||
Binary file not shown.
@@ -101,8 +101,9 @@ public class UserDefinedCarver extends Carver {
|
|||||||
if(!((UserDefinedBiome) biome).getConfig().getCarvers().containsKey(this)) { // Stop if we enter a biome this carver is not present in
|
if(!((UserDefinedBiome) biome).getConfig().getCarvers().containsKey(this)) { // Stop if we enter a biome this carver is not present in
|
||||||
continue z;
|
continue z;
|
||||||
}
|
}
|
||||||
if(FastMath.floorDiv(origin.getBlockX(), 16) != chunkX && FastMath.floorDiv(origin.getBlockZ(), 16) != chunkZ)
|
if(FastMath.floorDiv(origin.getBlockX(), 16) != chunkX && FastMath.floorDiv(origin.getBlockZ(), 16) != chunkZ) { // Only carve in the current chunk.
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
points.add(carving.getPoint());
|
points.add(carving.getPoint());
|
||||||
}
|
}
|
||||||
points.forEach(point -> point.carve(chunkX, chunkZ, consumer));
|
points.forEach(point -> point.carve(chunkX, chunkZ, consumer));
|
||||||
|
|||||||
Reference in New Issue
Block a user