Allows configuration of Generator interpolation smoothing

This commit is contained in:
dfsek
2020-10-18 14:26:41 -07:00
parent c3d5b55dcc
commit 55a74636a0
8 changed files with 13 additions and 5 deletions

View File

@@ -17,6 +17,6 @@ public final class FailoverGenerator extends UserDefinedGenerator {
palette.put(255, new RandomPalette<BlockData>(new Random(2403)).add(Material.STONE.createBlockData(), 1));
}
public FailoverGenerator() throws ParseException {
super("0", Collections.emptyList(), palette);
super("0", Collections.emptyList(), palette, false);
}
}