diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-04-19 22:03:17 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2020-04-20 00:29:52 +0200 |
commit | 246acb19f99cf974080e1bdf28acd6a263d6e971 (patch) | |
tree | 1bf8b98509aea91a629ee08d7c0fc952d9e00ee5 /src/Entities/ArrowEntity.cpp | |
parent | Correct world access in NetherPortalScanner (diff) | |
download | cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.tar cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.tar.gz cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.tar.bz2 cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.tar.lz cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.tar.xz cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.tar.zst cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Entities/ArrowEntity.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/Entities/ArrowEntity.cpp b/src/Entities/ArrowEntity.cpp index 464496d31..e0d1cebc1 100644 --- a/src/Entities/ArrowEntity.cpp +++ b/src/Entities/ArrowEntity.cpp @@ -9,16 +9,6 @@ -/** Converts an angle in degrees into a byte representation used by the network protocol */ -static Byte AngleToProto(double a_X) -{ - return static_cast<Byte>((a_X * 255) / 360); -} - - - - - cArrowEntity::cArrowEntity(cEntity * a_Creator, Vector3d a_Pos, Vector3d a_Speed): Super(pkArrow, a_Creator, a_Pos, a_Speed, 0.5, 0.5), m_PickupState(psNoPickup), @@ -173,7 +163,7 @@ void cArrowEntity::CollectedBy(cPlayer & a_Dest) void cArrowEntity::SpawnOn(cClientHandle & a_Client) { - a_Client.SendSpawnObject(*this, m_ProjectileKind, static_cast<int>(m_CreatorData.m_UniqueID + 1), AngleToProto(GetYaw()), AngleToProto(GetPitch())); + a_Client.SendSpawnObject(*this, m_ProjectileKind, static_cast<int>(m_CreatorData.m_UniqueID + 1)); a_Client.SendEntityMetadata(*this); } |