This commit is contained in:
main() 2012-05-01 18:08:51 +02:00
parent 02347e05d8
commit 9cc35d7b12
1 changed files with 4 additions and 1 deletions

View File

@ -466,8 +466,11 @@ public class MVWorld extends SerializationConfig implements MultiverseWorld {
super.copyValues(other);
}
/**
* Null-location.
*/
@SerializableAs("MVNullLocation (It's a bug if you see this in your config file)")
private static final class NullLocation extends SpawnLocation {
public static final class NullLocation extends SpawnLocation {
public NullLocation() {
super(0, -1, 0);
}