mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-02 17:32:03 +01:00
Possible fix for some chunk loading issues experienced when teleporting. Thanks akrieger!
By: EvilSeph <evilseph@unaligned.org>
This commit is contained in:
parent
88299f417b
commit
f9895d3ca5
1 changed files with 3 additions and 2 deletions
|
@ -170,11 +170,12 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
|
|||
WorldServer newWorld = ((CraftWorld)location.getWorld()).getHandle();
|
||||
ServerConfigurationManager manager = server.getHandle();
|
||||
EntityPlayer entity = getHandle();
|
||||
boolean successfulTeleport = entity.netServerHandler.teleport(location);
|
||||
|
||||
if (oldWorld != newWorld) {
|
||||
if (oldWorld != newWorld && successfulTeleport) {
|
||||
this.entity = manager.a(entity, newWorld.dimension, false);
|
||||
}
|
||||
return entity.netServerHandler.teleport(location);
|
||||
return successfulTeleport;
|
||||
}
|
||||
|
||||
public void setSneaking(boolean sneak) {
|
||||
|
|
Loading…
Reference in a new issue