-
Bug
-
Resolution: Cannot Reproduce
-
Minecraft 15w47a, Minecraft 15w47c, Minecraft 15w49a, Minecraft 1.9, Minecraft 1.9.1 Pre-Release 1, Minecraft 1.9.1 Pre-Release 2, Minecraft 1.9.1 Pre-Release 3, Minecraft 1.9.1, Minecraft 1.9.2, Minecraft 16w14a, Minecraft 16w15a, Minecraft 16w15b, Minecraft 1.9.3 Pre-Release 1, Minecraft 1.9.3 Pre-Release 3, Minecraft 1.9.4, Minecraft 16w20a, Minecraft 1.10 Pre-Release 2, Minecraft 1.10, Minecraft 1.10.2, Minecraft 16w36a, Minecraft 16w39b, Minecraft 16w39c, Minecraft 16w41a, Minecraft 16w42a, Minecraft 16w43a, Minecraft 1.11 Pre-Release 1, Minecraft 1.11.1, Minecraft 1.11.2, Minecraft 17w06a, Minecraft 17w14a, Minecraft 17w17b, Minecraft 17w18a, Minecraft 17w18b, Minecraft 1.12 Pre-Release 5, Minecraft 1.12 Pre-Release 7, Minecraft 1.12, Minecraft 1.12.1 Pre-Release 1, Minecraft 1.12.2, Minecraft 18w16a, Minecraft 1.13-pre1, Minecraft 1.13-pre6, Minecraft 1.13-pre8, Minecraft 1.13, Minecraft 18w31a, Minecraft 1.13.1-pre1, Minecraft 1.13.1, Minecraft 1.13.2-pre1, Minecraft 1.13.2-pre2, Minecraft 1.13.2, Minecraft 18w43a, Minecraft 18w43b, Minecraft 18w43c, Minecraft 18w44a, Minecraft 18w45a, Minecraft 18w46a, Minecraft 18w47b, Minecraft 18w48a, Minecraft 18w48b, Minecraft 18w49a, Minecraft 18w50a, Minecraft 19w02a, Minecraft 19w03a, Minecraft 19w03b, Minecraft 19w03c, Minecraft 19w04b, Minecraft 19w05a, Minecraft 19w06a, Minecraft 19w07a
-
Confirmed
-
(Unassigned)
The bug
Players are removed from the list of loaded entities and the EntityTracker stops tracking them when they teleport out of non-spawn chunks which are not loaded afterwards anymore into currently unloaded chunks. This causes all kind of desynchronizations for the client and results in the @e selector not finding the player anymore (@a, @r and @p still do).
Desynchronization examples
- For any level of speed/slowness, it doesn't increase/decrease your walking speed, nor FOV and if you had speed or slowness before the glitch happens the speed/slowness will also stay after you clear it. (It won't show any particles or a tab in the GUI saying that you have the effect but your FOV is still increased/decreased and you still walk faster/slower)
- Invisibility doesn't work.
- Switching to spectator mode makes your head completely nontransparent (
MC-93377) and when switching from spectator to another makes you invisible. (MC-92324) - You don't take knockback from any damage. (
MC-98210) - You can't hear any damage sounds.
- Elytras won't work (
MC-89994) which might be the cause ofMC-90035. - Targeting with @e and @r[type=player] becomes unreliable. (
MC-100369) - If you have some armor equipped, then teleport, changing the armor values (changing, adding, removing) makes your armor points stay the same.
- Players will be invisible. (
MC-91236) - Potion effects are displayed incorrectly, went through a teleporter after getting absorption, and even after the absorption wore off minutes later, the particle effects from it were there.
- Health is displayed incorrectly, health-boost/absorption before teleporting, and extra hearts did not show after teleporting.
- Attack Indicator displays wrong animation (
MC-97169) - Main hand is always your right hand (
MC-142135) - Killing an entity with a bow and arrow will not count as the player's kill
- Player becomes stuck in bed
List by nghhi_crul
How to reproduce
The main steps are always
- Use setup steps provided for the specific reproduction case
- Teleport away from any chunks which remain loaded after you teleport, example: spawn chunks, chunks with other player, chunks with hoppers...
/tp ~ ~ ~100000
- Teleport away from these chunks making sure they get unloaded once you teleported
/tp ~ ~ ~100000
- Use reproduction steps provided for the specific reproduction case
Potion effects modifiers are not updated for client
Reproduction steps
- Give yourself speed or slowness which both modify the movement speed
/effect @p speed 10000 10 true
- Walk around
→ You will notice that you walk with normal movement speed
Potion effect particles are not updated
Setup steps
- Give yourself for example night vision
/effect @p night_vision 1000 1
Reproduction steps
- Clear the potion effects
/effect @p clear
→ You will notice that the particles remain
Actions modifying flags value
The FLAGS data parameter stores the state for some entity states:
- burning
- sneaking
- sprinting
- invisible
- glowing
- elytra flying
Data parameters are managed by the EntityTracker and therefor the player will not receive the change. The highlighted states cause client side problems. "Invisible" includes switching from Spectator mode to Creative mode.
Setup steps
Switch to Spectator mode or give yourself the invisibility effect
/gamemode spectator
Reproduction steps
- Switch back to a different game mode
- Stand in fire
- Use the glowing effect
/effect @p glowing 1000 1 true
- Use the invisibility effect
/effect @p invisibility 1000 1 true
- Try using the elytra
Entity selector not finding player anymore
Reproduction steps
Use the following command
/say @e
Code analysis
Based on 1.11.2 decompiled using MCP 9.35 rc1
The problem is that the method net.minecraft.world.World.updateEntityWithOptionalForce(Entity, boolean) only updates the chunk an entity is in if the area around the entity is loaded, which causes other bugs like MC-81536 and might not be a good design as seen in MC-108469.
When the server then receives a CPacketPlayer packet before the area around the player is loaded correcting the chunk the player is in, the chunks were the player was before are unloaded. This makes the server then later remove the player from the list of loaded entities (Side note: but not loaded players) and causes the EntityTracker to stop tracking the player which means no data parameter changes are send to the player anymore.
Removing the condition for the area to be loaded could nearly completely solve this problem. It would however not solve the problem where entities teleported in unloaded chunks get lost.
The reason why it only "nearly completely" solves this is because it might still be possible that this happens when the CPacketPlayer packet is received and processed before the player is updated, which might be possible because packets are processed before players are updated.
- blocks
-
MC-90026 Elytra flight desync when flying into unloaded chunks
- Reopened
- is duplicated by
-
MC-10676 Sleeping in bed won't let you leave bed or reset time (or leave "leave bed" screen) [SMP]
- Resolved
-
MC-23628 Cant get out of bed
- Resolved
-
MC-35080 Cannot leave the bed!
- Resolved
-
MC-40898 Unable to leave my bed.
- Resolved
-
MC-89994 Elytra stops working when teleported into unloaded chunks
- Resolved
-
MC-90133 gliders freeze
- Resolved
-
MC-90820 Elytra stop working after TP
- Resolved
-
MC-91065 Speed effect don't work
- Resolved
-
MC-91236 Player invisible on servers
- Resolved
-
MC-91799 When joining a server there is a chance to become invisible
- Resolved
-
MC-92216 Leaving bed doesn't work sometimes
- Resolved
-
MC-93377 sometimes the head of a spectator looks solid
- Resolved
-
MC-93578 Elytra not working after death/teleport...
- Resolved
-
MC-95476 Teleporting players to unloaded chunks makes that player invisble
- Resolved
-
MC-96358 Elytra not working
- Resolved
-
MC-97148 When You Teleport To Some Coordinates Elytra Is Not Working Anymore.
- Resolved
-
MC-97169 Attack Indicator displays wrong animation after going through End Gateway
- Resolved
-
MC-97170 Player damage sound effect does not play after going through End Gateway
- Resolved
-
MC-97287 Elytra does not work
- Resolved
-
MC-97596 Speed effect and Slowness effect don't work in any ways.
- Resolved
-
MC-97824 Help with elytra
- Resolved
-
MC-98147 Bug with rideable entities.
- Resolved
-
MC-98210 Knockback invulnerability - take no knockback until you die or reload the world
- Resolved
-
MC-98864 "Gamemode limbo"
- Resolved
-
MC-99004 Elytra not working in end city
- Resolved
-
MC-99134 Elytra
- Resolved
-
MC-99374 Elytra doesnt work
- Resolved
-
MC-99491 [DUPLICATE] Leaving bed doesn't work sometimes
- Resolved
-
MC-99499 Can't get out of bed?
- Resolved
-
MC-99856 Bed Bug in 1.9
- Resolved
-
MC-99894 Stuck in bed while sleeping
- Resolved
-
MC-100085 Can't Leave bed
- Resolved
-
MC-100272 Stuck in bed, alone, forever, SAD
- Resolved
-
MC-100369 @e and 'type=Player' causes players to unload + odd behaviour.
- Resolved
-
MC-100490 Can't leave bed after using it
- Resolved
-
MC-100501 Player No longer selected with @e after teleports
- Resolved
-
MC-100563 elytra not working
- Resolved
-
MC-100576 Speed Effect
- Resolved
-
MC-100737 Elytra Teleport Bug
- Resolved
-
MC-100912 On a LAN world, after the players teleport, they become invisible to each other.
- Resolved
-
MC-101052 Stayed invisible when switching from sp to c
- Resolved
-
MC-101158 giveing players slowness with effect command now working when TPing players into unloaded chuncks
- Resolved
-
MC-101366 Elytra
- Resolved
-
MC-101494 Slowness effect does not work
- Resolved
-
MC-102228 Can't leave bed.
- Resolved
-
MC-102339 Beds don´t work correctly
- Resolved
-
MC-102776 elytra problem + teleportation
- Resolved
-
MC-102975 Spectator mode does not work correctly in the Nether, Blaze attacks
- Resolved
-
MC-103299 Chat opens when using bed, can't exit
- Resolved
-
MC-103301 Elytra can not be usd after teleporting no matter how you try to fix it.
- Resolved
-
MC-103650 When Using /spreadplayers Sometimes Players Are Invisible
- Resolved
-
MC-104816 Exiting Gamemode 3 Visual Error
- Resolved
-
MC-106361 When sleeping it is supposed to turn it to day and place you off the bed, but it has not been getting me out of the bed
- Resolved
-
MC-106588 Can't get out of bed.
- Resolved
-
MC-106610 Sleeping in a bed close to the nether portal in overworld and in a tower.
- Resolved
-
MC-107521 Stuck in a bed when I sleep
- Resolved
-
MC-107936 No damage sound while falling to the void in the end
- Resolved
-
MC-108072 No damage sound while falling to the void in the END ISLANDS
- Resolved
-
MC-108444 When a player teleports, it becomes invisible
- Resolved
-
MC-109600 Can't leave bed with 16w44a
- Resolved
-
MC-110164 Cannot leave bed
- Resolved
-
MC-110323 teleport invisable
- Resolved
-
MC-110569 Elytra not working after teleporting with command
- Resolved
-
MC-111006 Elytra not working!
- Resolved
-
MC-111007 Unable to leave bed after command block teleport on vanilla multiplayer server
- Resolved
-
MC-111641 Can't fly in the end
- Resolved
-
MC-111709 Elytra Bug in 1.11.2
- Resolved
-
MC-112449 Invisible player, invisible mobs, etc.
- Resolved
-
MC-115109 potion still applied after effect duration in creative
- Resolved
-
MC-115383 Can't get out of my bed in new snapshot (17w13b)
- Resolved
-
MC-116399 Beds STILL BLOODY BROKEN
- Resolved
-
MC-116496 @e doesn't find player after teleporting
- Resolved
-
MC-116629 Staying invisible after effect expires
- Resolved
-
MC-117151 @e does not select players after teleporting
- Resolved
-
MC-117405 Speed/Slowness potions have no effect after teleporting through End Gateway
- Resolved
-
MC-118842 Server bug when player uses end gateway in the end dimension
- Resolved
-
MC-118943 Armor/Elytra sometimes does not register after going through a portal
- Resolved
-
MC-119070 Flying through end portal with elytra causes glitchy behavior
- Resolved
-
MC-119566 Elytra & End Gateway
- Resolved
-
MC-128167 Sometimes after turning off spectacor mode I got invisibility for 3 - 5 seconds.
- Resolved
-
MC-131284 Stuck in Bed
- Resolved
-
MC-131999 Stuck at Leave Bed
- Resolved
-
MC-132971 You can't wake up after sleeping
- Resolved
-
MC-133411 I can not get out of bed!
- Resolved
-
MC-133826 tp to bed player gets stuck
- Resolved
-
MC-134082 Stuck in bed
- Resolved
-
MC-134091 Elytra didn't deploy & armor bar disappeared
- Resolved
-
MC-134397 returning from the End glitch
- Resolved
-
MC-134584 Getting tp'ed back in time
- Resolved
-
MC-134751 Very serious error after leaving the END, kill my world
- Resolved
-
MC-135203 Forever nothing usable after respawn
- Resolved
-
MC-135366 when you fall out of the world in the end where the end cities are in creative mode it kills you but there are no death sounds
- Resolved
-
MC-135571 Traveling from the end makes it impossible to interact with blocks or items
- Resolved
-
MC-135586 Falling into the void in the end world made me respawn in over world broken. Could not change game mode or open chest…
- Resolved
-
MC-135618 Bug After Exit Portal - Can't Interact With World
- Resolved
-
MC-136033 Lever cannot be turned on or off inside the end after leaving the end
- Resolved
-
MC-138924 Stuck in Bed
- Resolved
-
MC-140386 Can't get out of bed
- Resolved
-
MC-140805 I can not leave the bed.
- Resolved
-
MC-140840 Softlock after sleeping
- Resolved
-
MC-140941 Bed Bug
- Resolved
-
MC-140979 Softlock while sleeping in a bed
- Resolved
-
MC-141106 Going completely invisible when re-enter a loaded chunk from an unloaded chunk.
- Resolved
-
MC-141120 Can not press "Leave bed"
- Resolved
-
MC-141359 18w50a Bed Bug
- Resolved
-
MC-141477 Stuck In a bed after sleeping and died on a relm
- Resolved
-
MC-141873 Twitchy sleeping
- Resolved
-
MC-142294 Stuck in bed
- Resolved
-
MC-142740 Still Experiencing Stuck In Bed Issue
- Resolved
-
MC-142755 Sleeping results in forever loading with 'leave bed' button
- Resolved
-
MC-142786 Elytra not worning in nether - 19w03c
- Resolved
-
MC-142836 in the nether, player shot arrows do not count as player kills
- Resolved
-
MC-142837 I'm stuck in my bed in 19w03c...
- Resolved
-
MC-142863 Zombie Pigman not get agro when shot by bow
- Resolved
-
MC-142878 Elytra does not work in the nether
- Resolved
-
MC-142892 Can't get up in bed while chat is open.
- Resolved
-
MC-143080 desync again. can't leave bed at morning
- Resolved
-
MC-143084 Elytra won't deploy after exiting Nether
- Resolved
-
MC-143098 Fire damage not making sound
- Resolved
-
MC-143107 Elytras aren't working anymore.
- Resolved
-
MC-143108 Elytras not activating at all
- Resolved
-
MC-143111 Magma Block does not have a hurt sound
- Resolved
-
MC-143114 Blazes don't drop blaze rods
- Resolved
-
MC-143196 a sound that is not hurt when being hit by a zombie pig
- Resolved
-
MC-143230 Stuck In Bed Sleeping After Nether Trips
- Resolved
-
MC-143281 Issue with getting in bed in a singleplayer world
- Resolved
-
MC-143315 Being on fire; No fire shown on HUD and without sound.
- Resolved
-
MC-143500 Can't get out of bed
- Resolved
-
MC-143548 i can not leave bed
- Resolved
-
MC-143554 Zombie Pigmen are not Hostile Towards Bow and Crossbow Attacks
- Resolved
-
MC-143634 No damage to the sound when hurting through sweet berries
- Resolved
-
MC-143645 When you get up it will stuck in the sleeping interface.
- Resolved
-
MC-143646 Speed effect not working :(
- Resolved
-
MC-143781 Cannot open elytra while falling
- Resolved
-
MC-143798 Screen stays grey when in bed Snapshot 19w06a
- Resolved
-
MC-143887 Unable to leave bed after daytime comes
- Resolved
-
MC-143907 Unable to get out of bed at random
- Resolved
-
MC-143911 Bed Bug
- Resolved
-
MC-143956 Golden apple golden hearts missing up
- Resolved
-
MC-144014 Elytra STILL NOT FIXED
- Resolved
-
MC-144185 Elytra not opening until I land
- Resolved
-
MC-144196 Stuck at "leave bed" after going to bed
- Resolved
-
MC-144258 Creatures killed with bows have no experience.
- Resolved
-
MC-144280 Bed Bug
- Resolved
-
MC-144324 Health boost potion/command in overworld going into nether creates dead glitch
- Resolved
-
MC-144394 Can't get up when falling asleep with a villager looking at you
- Resolved
-
MC-144549 When sleeping, bed glitches and can't do anything 19w07a
- Resolved
-
MC-145015 Sleep bug
- Resolved
-
MC-145225 Elytra fails after going through an end gateway
- Resolved
- relates to
-
MC-44514 Teleporting ridden entity in unloaded chunks does not cause chunks to load for riding player
- Resolved
-
MC-88179 Armor bar disappears after changing dimension until GUI update
- Resolved
-
MC-89361 Player selectors fail finding player/Player is not correctly moved from the End to the Nether
- Resolved
-
MC-89588 command 'effect @a clear' cleared effects from HUD, but not from gameplay
- Resolved
-
MC-91159 Speed Potion Doesn't Work On GameMode Creative
- Resolved
-
MC-95350 Moving slowly even after the slowness effect ends
- Resolved
-
MC-97737 Players don't get invisible when they have invisibility potion effect.
- Resolved
-
MC-90026 Elytra flight desync when flying into unloaded chunks
- Reopened
-
MC-28447 Speed effect stops working after switching dimensions but resumes after sprinting
- Resolved
-
MC-90035 Elytra stops working when changing dimensions
- Resolved
-
MC-90059 Elytra teleportation glitch.
- Resolved
-
MC-90082 Sometimes the Elytra wings dont glide
- Resolved
-
MC-92324 Players become invisible
- Resolved
-
MC-94857 Invisibility when changing gamemode from spectator.
- Resolved
-
MC-99781 Spectator Mode TP Glitch
- Resolved
-
MC-108425 Attribute modifiers not being removed correctly
- Resolved
-
MC-108469 Chunk-wise entity lists often don't get updated correctly (Entities disappear)
- Resolved
-
MC-124177 Teleporting to another dimension loses some client states
- Resolved
-
MC-133546 Player becomes "ghost" when dying in the nether or going through the end portal back to the overworld
- Resolved
-
MC-142114 Joining the world outside of the spawn chunks results in client side desync
- Resolved