mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 11:38:29 +01:00
[Bleeding] Make sure to close any open inventory windows before teleporting. Thanks md_5.
This commit is contained in:
parent
1d04305cea
commit
1d4a9e1df5
@ -312,6 +312,10 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
|
|||||||
|
|
||||||
// Check if the fromWorld and toWorld are the same.
|
// Check if the fromWorld and toWorld are the same.
|
||||||
if (fromWorld == toWorld) {
|
if (fromWorld == toWorld) {
|
||||||
|
// Close any foreign inventory
|
||||||
|
if (getHandle().activeContainer != getHandle().defaultContainer){
|
||||||
|
getHandle().closeInventory();
|
||||||
|
}
|
||||||
entity.netServerHandler.teleport(to);
|
entity.netServerHandler.teleport(to);
|
||||||
} else {
|
} else {
|
||||||
server.getHandle().moveToWorld(entity, toWorld.dimension, true, to);
|
server.getHandle().moveToWorld(entity, toWorld.dimension, true, to);
|
||||||
|
Loading…
Reference in New Issue
Block a user