mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-23 00:31:31 +01:00
Remove redundant syncInventory on world change
This commit is contained in:
parent
dd745e8842
commit
23a94053b0
@ -473,13 +473,14 @@
|
||||
- worldserver.addEntity(entityplayer1);
|
||||
- this.players.add(entityplayer1);
|
||||
- this.j.put(entityplayer1.getUniqueID(), entityplayer1);
|
||||
- entityplayer1.syncInventory();
|
||||
+ if (!entityplayer.playerConnection.isDisconnected()) {
|
||||
+ worldserver.getPlayerChunkMap().addPlayer(entityplayer1);
|
||||
+ worldserver.addEntity(entityplayer1);
|
||||
+ this.players.add(entityplayer1);
|
||||
+ this.j.put(entityplayer1.getUniqueID(), entityplayer1);
|
||||
+ }
|
||||
entityplayer1.syncInventory();
|
||||
+ // entityplayer1.syncInventory();
|
||||
entityplayer1.setHealth(entityplayer1.getHealth());
|
||||
+ // Added from changeDimension
|
||||
+ updateClient(entityplayer); // Update health, etc...
|
||||
|
Loading…
Reference in New Issue
Block a user