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/ProjectileEntity.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 'src/Entities/ProjectileEntity.cpp')
-rw-r--r-- | src/Entities/ProjectileEntity.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/Entities/ProjectileEntity.cpp b/src/Entities/ProjectileEntity.cpp index 22b5f9a39..75ac850e6 100644 --- a/src/Entities/ProjectileEntity.cpp +++ b/src/Entities/ProjectileEntity.cpp @@ -30,13 +30,6 @@ -/** Converts an angle in radians into a byte representation used by the network protocol */ -#define ANGLE_TO_PROTO(X) static_cast<Byte>(X * 255 / 360) - - - - - //////////////////////////////////////////////////////////////////////////////// // cProjectileTracerCallback: @@ -451,7 +444,7 @@ void cProjectileEntity::HandlePhysics(std::chrono::milliseconds a_Dt, cChunk & a void cProjectileEntity::SpawnOn(cClientHandle & a_Client) { // Default spawning - use the projectile kind to spawn an object: - a_Client.SendSpawnObject(*this, m_ProjectileKind, 12, ANGLE_TO_PROTO(GetYaw()), ANGLE_TO_PROTO(GetPitch())); + a_Client.SendSpawnObject(*this, m_ProjectileKind, 12); a_Client.SendEntityMetadata(*this); } |