diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-08-29 14:47:22 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-08-29 14:47:22 +0200 |
commit | 7056992d0d99fde627e00c5d7f524cad0a70073d (patch) | |
tree | d999ba9178beb3d029f409291e85fa69e29ccd42 /source/Protocol/Protocol14x.cpp | |
parent | Fixed Minecart spawning issues (diff) | |
download | cuberite-7056992d0d99fde627e00c5d7f524cad0a70073d.tar cuberite-7056992d0d99fde627e00c5d7f524cad0a70073d.tar.gz cuberite-7056992d0d99fde627e00c5d7f524cad0a70073d.tar.bz2 cuberite-7056992d0d99fde627e00c5d7f524cad0a70073d.tar.lz cuberite-7056992d0d99fde627e00c5d7f524cad0a70073d.tar.xz cuberite-7056992d0d99fde627e00c5d7f524cad0a70073d.tar.zst cuberite-7056992d0d99fde627e00c5d7f524cad0a70073d.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Protocol/Protocol14x.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/Protocol/Protocol14x.cpp b/source/Protocol/Protocol14x.cpp index c31a21c42..ba9d7c01a 100644 --- a/source/Protocol/Protocol14x.cpp +++ b/source/Protocol/Protocol14x.cpp @@ -229,7 +229,7 @@ void cProtocol146::SendSpawnObject(const cEntity & a_Entity, char a_ObjectType, -void cProtocol146::SendSpawnVehicle(const cEntity & a_Vehicle, char a_VehicleType, char a_VehicleTypeType) +void cProtocol146::SendSpawnVehicle(const cEntity & a_Vehicle, char a_VehicleType, char a_VehicleSubType) { cCSLock Lock(m_CSPacket); WriteByte (PACKET_SPAWN_OBJECT); @@ -240,8 +240,8 @@ void cProtocol146::SendSpawnVehicle(const cEntity & a_Vehicle, char a_VehicleTyp WriteInt ((int)(a_Vehicle.GetPosZ() * 32)); WriteByte ((Byte)((a_Vehicle.GetPitch() / 360.f) * 256)); WriteByte ((Byte)((a_Vehicle.GetRotation() / 360.f) * 256)); - WriteInt (a_VehicleTypeType); - if (a_VehicleTypeType != 0) + WriteInt (a_VehicleSubType); + if (a_VehicleSubType != 0) { WriteShort((short)(a_Vehicle.GetSpeedX() * 400)); WriteShort((short)(a_Vehicle.GetSpeedY() * 400)); |