Fix returning from the end always going to world spawn ()

This commit is contained in:
KosmX 2022-01-05 21:05:38 +01:00 committed by GitHub
parent 46dfd9a1b4
commit a1d9bbf544
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,6 +65,6 @@ public class ServerPlayerEntityMixin {
return null;
}
return World.END;
return World.OVERWORLD;
}
}