mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-28 19:22:50 +01:00
SPIGOT-5509: Sleeping player does not eject bed when teleported
This commit is contained in:
parent
99cf10e4c7
commit
d208733e70
1 changed files with 5 additions and 0 deletions
|
@ -643,6 +643,11 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
|
||||||
// If this player is riding another entity, we must dismount before teleporting.
|
// If this player is riding another entity, we must dismount before teleporting.
|
||||||
entity.stopRiding();
|
entity.stopRiding();
|
||||||
|
|
||||||
|
// SPIGOT-5509: Wakeup, similar to riding
|
||||||
|
if (this.isSleeping()) {
|
||||||
|
this.wakeup(false);
|
||||||
|
}
|
||||||
|
|
||||||
// Update the From Location
|
// Update the From Location
|
||||||
from = event.getFrom();
|
from = event.getFrom();
|
||||||
// Grab the new To Location dependent on whether the event was cancelled.
|
// Grab the new To Location dependent on whether the event was cancelled.
|
||||||
|
|
Loading…
Reference in a new issue