Merge branch 'proto_1.12.2' into world
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
group 'mc'
|
||||
version '1.0-SNAPSHOT'
|
||||
|
||||
dependencies {
|
||||
|
||||
@@ -20,6 +20,8 @@ import java.util.List;
|
||||
|
||||
@Slf4j
|
||||
public class SimpleWorld implements World {
|
||||
@Getter
|
||||
private final String name = "flat";
|
||||
@Getter
|
||||
private final WorldType worldType = WorldType.FLAT;
|
||||
private EntityLocation spawn;
|
||||
@@ -38,7 +40,7 @@ public class SimpleWorld implements World {
|
||||
|
||||
@Override
|
||||
public void setSpawn(double x, double y, double z, float yaw, float pitch) {
|
||||
this.spawn = new EntityLocation(x, y, z, yaw, pitch, this);
|
||||
this.spawn = new EntityLocation(x, y, z, yaw, pitch);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user