summaryrefslogtreecommitdiffstats
path: root/src/Protocol
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2015-08-20 18:16:54 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2015-08-20 18:16:54 +0200
commit7cf741abdeef7579ea3069ca42615e3f868c0194 (patch)
treed50a88d41bf43f0d46481782d50ab8623d287471 /src/Protocol
parentMerge pull request #2391 from SamJBarney/CropGrowthFix (diff)
parentFixed food drain bugs (diff)
downloadcuberite-7cf741abdeef7579ea3069ca42615e3f868c0194.tar
cuberite-7cf741abdeef7579ea3069ca42615e3f868c0194.tar.gz
cuberite-7cf741abdeef7579ea3069ca42615e3f868c0194.tar.bz2
cuberite-7cf741abdeef7579ea3069ca42615e3f868c0194.tar.lz
cuberite-7cf741abdeef7579ea3069ca42615e3f868c0194.tar.xz
cuberite-7cf741abdeef7579ea3069ca42615e3f868c0194.tar.zst
cuberite-7cf741abdeef7579ea3069ca42615e3f868c0194.zip
Diffstat (limited to 'src/Protocol')
-rw-r--r--src/Protocol/Protocol18x.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/Protocol/Protocol18x.cpp b/src/Protocol/Protocol18x.cpp
index da5c451db..58cc839f0 100644
--- a/src/Protocol/Protocol18x.cpp
+++ b/src/Protocol/Protocol18x.cpp
@@ -1028,10 +1028,7 @@ void cProtocol180::SendPlayerMoveLook(void)
cPacketizer Pkt(*this, 0x08); // Player Position And Look packet
cPlayer * Player = m_Client->GetPlayer();
Pkt.WriteBEDouble(Player->GetPosX());
-
- // The "+ 0.001" is there because otherwise the player falls through the block they were standing on.
- Pkt.WriteBEDouble(Player->GetPosY() + 0.001);
-
+ Pkt.WriteBEDouble(Player->GetPosY());
Pkt.WriteBEDouble(Player->GetPosZ());
Pkt.WriteBEFloat(static_cast<float>(Player->GetYaw()));
Pkt.WriteBEFloat(static_cast<float>(Player->GetPitch()));