mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-02-16 10:30:42 +00:00
Bump tectonic version
This commit is contained in:
@@ -56,7 +56,7 @@ dependencies {
|
||||
|
||||
implementation("net.jafama:jafama:2.3.2")
|
||||
|
||||
implementation(name = "Tectonic-0.1.0", group = "")
|
||||
implementation(name = "Tectonic-1.0.0", group = "")
|
||||
|
||||
|
||||
// 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
|
||||
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;
|
||||
}
|
||||
points.add(carving.getPoint());
|
||||
}
|
||||
points.forEach(point -> point.carve(chunkX, chunkZ, consumer));
|
||||
|
||||
Reference in New Issue
Block a user