diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-08-04 22:24:31 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-08-04 22:24:31 +0200 |
commit | a032594bf7f8a52f963e7f3f1df04997874f67d3 (patch) | |
tree | f1da4ef178b752f025ca0a77b3a52ef9b37b9e02 /src | |
parent | Fixed signs not staying on other signs (diff) | |
parent | Fixed #1286 (diff) | |
download | cuberite-a032594bf7f8a52f963e7f3f1df04997874f67d3.tar cuberite-a032594bf7f8a52f963e7f3f1df04997874f67d3.tar.gz cuberite-a032594bf7f8a52f963e7f3f1df04997874f67d3.tar.bz2 cuberite-a032594bf7f8a52f963e7f3f1df04997874f67d3.tar.lz cuberite-a032594bf7f8a52f963e7f3f1df04997874f67d3.tar.xz cuberite-a032594bf7f8a52f963e7f3f1df04997874f67d3.tar.zst cuberite-a032594bf7f8a52f963e7f3f1df04997874f67d3.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol17x.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Protocol/Protocol17x.cpp b/src/Protocol/Protocol17x.cpp index 8f3399b2f..318342f09 100644 --- a/src/Protocol/Protocol17x.cpp +++ b/src/Protocol/Protocol17x.cpp @@ -820,7 +820,7 @@ void cProtocol172::SendPlayerAbilities(void) } Pkt.WriteByte(Flags); Pkt.WriteFloat((float)(0.05 * Player->GetFlyingMaxSpeed())); - Pkt.WriteFloat((float)(0.1 * Player->GetMaxSpeed())); + Pkt.WriteFloat((float)(0.1 * Player->GetNormalMaxSpeed())); } |