diff options
| author | Alezito2008 <92759854+Alezito2008@users.noreply.github.com> | 2026-03-04 02:21:21 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-04 13:21:21 +0800 |
| commit | 6c842b2854fb8c1d0c87ffcbf0bb5c297b883226 (patch) | |
| tree | 0e579a67c52fb1486264d0cb2f612bda84b55fe2 /Minecraft.World/Player.cpp | |
| parent | c8a8f9dd6cc120758ea2501ef5a94320225dd7de (diff) | |
Disable flight state when riding entities (#368)
Diffstat (limited to 'Minecraft.World/Player.cpp')
| -rw-r--r-- | Minecraft.World/Player.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Minecraft.World/Player.cpp b/Minecraft.World/Player.cpp index 700935f6..e0fa26ad 100644 --- a/Minecraft.World/Player.cpp +++ b/Minecraft.World/Player.cpp @@ -627,6 +627,7 @@ void Player::ride(shared_ptr<Entity> e) return; } + this->abilities.flying = false; LivingEntity::ride(e); } |
