remove test method from Structure

This commit is contained in:
dfsek
2021-07-22 18:42:37 -07:00
parent 89b03aa3fb
commit 7d70b8fcdf
2 changed files with 0 additions and 4 deletions

View File

@@ -133,7 +133,6 @@ public class StructureScript implements Structure {
}
}
@Override
@SuppressWarnings("try")
public boolean test(Vector3 location, World world, Random random, Rotation rotation) {
try(ProfileFrame ignore = main.getProfiler().profile("terrascript_test:" + id)) {

View File

@@ -24,9 +24,6 @@ public interface Structure extends StringIdentifiable {
@SuppressWarnings("try")
boolean generate(Vector3 location, World world, Chunk chunk, Random random, Rotation rotation);
@SuppressWarnings("try")
boolean test(Vector3 location, World world, Random random, Rotation rotation);
@SuppressWarnings("try")
boolean generate(Buffer buffer, World world, Random random, Rotation rotation, int recursions);