This commit is contained in:
dags- 2020-03-21 00:40:36 +00:00
parent 13cb455012
commit a6f896be93

View File

@ -75,8 +75,8 @@ public class Preview extends Button {
public Preview(int seed) { public Preview(int seed) {
super(0, 0, 0, 0, "", b -> {}); super(0, 0, 0, 0, "", b -> {});
this.seed = seed == -1 ? random.nextInt() : seed; this.seed = seed == -1 ? random.nextInt() : seed;
this.offsetX = 0;//random.nextInt(50000) - 25000; this.offsetX = 0;
this.offsetZ = 0;//random.nextInt(50000) - 25000; this.offsetZ = 0;
} }
public int getSeed() { public int getSeed() {