diff options
author | peterbell10 <peterbell10@live.co.uk> | 2017-05-15 18:04:53 +0200 |
---|---|---|
committer | Lukas Pioch <lukas@zgow.de> | 2017-05-15 18:04:53 +0200 |
commit | f0a16e6d280eea3b3c4f11286a1d2a08b6469368 (patch) | |
tree | bc632a8199850d633aa6916c5551853af439fabe /src/Protocol/Protocol_1_10.cpp | |
parent | Doxygen: added icon, autobrief. (diff) | |
download | cuberite-f0a16e6d280eea3b3c4f11286a1d2a08b6469368.tar cuberite-f0a16e6d280eea3b3c4f11286a1d2a08b6469368.tar.gz cuberite-f0a16e6d280eea3b3c4f11286a1d2a08b6469368.tar.bz2 cuberite-f0a16e6d280eea3b3c4f11286a1d2a08b6469368.tar.lz cuberite-f0a16e6d280eea3b3c4f11286a1d2a08b6469368.tar.xz cuberite-f0a16e6d280eea3b3c4f11286a1d2a08b6469368.tar.zst cuberite-f0a16e6d280eea3b3c4f11286a1d2a08b6469368.zip |
Diffstat (limited to 'src/Protocol/Protocol_1_10.cpp')
-rw-r--r-- | src/Protocol/Protocol_1_10.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Protocol/Protocol_1_10.cpp b/src/Protocol/Protocol_1_10.cpp index 813729fee..c1ddebce1 100644 --- a/src/Protocol/Protocol_1_10.cpp +++ b/src/Protocol/Protocol_1_10.cpp @@ -511,11 +511,11 @@ void cProtocol_1_10_0::WriteEntityMetadata(cPacketizer & a_Pkt, const cEntity & a_Pkt.WriteBEInt8(BOAT_LAST_HIT_TIME); a_Pkt.WriteBEInt8(METADATA_TYPE_VARINT); - a_Pkt.WriteBEInt32(Boat.GetLastDamage()); + a_Pkt.WriteVarInt32(static_cast<UInt32>(Boat.GetLastDamage())); a_Pkt.WriteBEInt8(BOAT_FORWARD_DIRECTION); a_Pkt.WriteBEInt8(METADATA_TYPE_VARINT); - a_Pkt.WriteBEInt32(Boat.GetForwardDirection()); + a_Pkt.WriteVarInt32(static_cast<UInt32>(Boat.GetForwardDirection())); a_Pkt.WriteBEInt8(BOAT_DAMAGE_TAKEN); a_Pkt.WriteBEInt8(METADATA_TYPE_FLOAT); @@ -523,7 +523,7 @@ void cProtocol_1_10_0::WriteEntityMetadata(cPacketizer & a_Pkt, const cEntity & a_Pkt.WriteBEInt8(BOAT_TYPE); a_Pkt.WriteBEInt8(METADATA_TYPE_VARINT); - a_Pkt.WriteBEInt32(Boat.GetType()); + a_Pkt.WriteVarInt32(static_cast<UInt32>(Boat.GetType())); a_Pkt.WriteBEInt8(BOAT_RIGHT_PADDLE_TURNING); a_Pkt.WriteBEInt8(METADATA_TYPE_BOOL); |