diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2017-08-30 16:04:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-30 16:04:09 +0200 |
commit | da0778dfaa6f82634b91cf981710ecc7809529ae (patch) | |
tree | a5f8c532a5f0ec50c1a2957395f2941cc070c226 /src/Entities | |
parent | Protocol Spawn Position Should Use LastSentPosition (#3929) (diff) | |
parent | Add TOLUA_EXPOSITION for readability (diff) | |
download | cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.gz cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.bz2 cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.lz cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.xz cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.zst cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.zip |
Diffstat (limited to 'src/Entities')
-rw-r--r-- | src/Entities/ProjectileEntity.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Entities/ProjectileEntity.cpp b/src/Entities/ProjectileEntity.cpp index d1e101964..c2a1f782d 100644 --- a/src/Entities/ProjectileEntity.cpp +++ b/src/Entities/ProjectileEntity.cpp @@ -81,7 +81,7 @@ protected: { Vector3d Intersection = LineStart + m_Projectile->GetSpeed() * LineCoeff; // Point where projectile goes into the hit block - if (cPluginManager::Get()->CallHookProjectileHitBlock(*m_Projectile, a_BlockX, a_BlockY, a_BlockZ, Face, &Intersection)) + if (cPluginManager::Get()->CallHookProjectileHitBlock(*m_Projectile, a_BlockX, a_BlockY, a_BlockZ, Face, Intersection)) { return false; } |