remove isTerraWorld from Fabric mixins

This commit is contained in:
dfsek
2021-07-22 14:25:06 -07:00
parent fe68aa6279
commit 2517b74951
2 changed files with 0 additions and 8 deletions

View File

@@ -115,10 +115,6 @@ public abstract class ChunkRegionMixin {
return this;
}
public boolean terraWorld$isTerraWorld() {
return terraWorld$getGenerator() instanceof GeneratorWrapper;
}
public TerraChunkGenerator terraWorld$getTerraGenerator() {
return ((FabricChunkGeneratorWrapper) terraWorld$getGenerator()).getHandle();
}

View File

@@ -100,10 +100,6 @@ public abstract class ServerWorldMixin {
return this;
}
public boolean terra$isTerraWorld() {
return terra$getGenerator() instanceof GeneratorWrapper;
}
public TerraChunkGenerator terra$getTerraGenerator() {
return ((FabricChunkGeneratorWrapper) terra$getGenerator()).getHandle();
}