summaryrefslogtreecommitdiffstats
path: root/src/Entities
diff options
context:
space:
mode:
authorDrButcher <JoBad@online.de>2020-05-03 22:05:32 +0200
committerGitHub <noreply@github.com>2020-05-03 22:05:32 +0200
commit258318ab98771f03d0109d7dfba81daaed26a2a0 (patch)
tree87f4d9cc16e0a18711afdd4070bdf3874bc358df /src/Entities
parentAdd cEntity::GetBoundingBox, and use where appropriate. (#4711) (diff)
downloadcuberite-258318ab98771f03d0109d7dfba81daaed26a2a0.tar
cuberite-258318ab98771f03d0109d7dfba81daaed26a2a0.tar.gz
cuberite-258318ab98771f03d0109d7dfba81daaed26a2a0.tar.bz2
cuberite-258318ab98771f03d0109d7dfba81daaed26a2a0.tar.lz
cuberite-258318ab98771f03d0109d7dfba81daaed26a2a0.tar.xz
cuberite-258318ab98771f03d0109d7dfba81daaed26a2a0.tar.zst
cuberite-258318ab98771f03d0109d7dfba81daaed26a2a0.zip
Diffstat (limited to 'src/Entities')
-rw-r--r--src/Entities/ArrowEntity.cpp5
-rw-r--r--src/Entities/Entity.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/src/Entities/ArrowEntity.cpp b/src/Entities/ArrowEntity.cpp
index 17c915742..ebb8524f1 100644
--- a/src/Entities/ArrowEntity.cpp
+++ b/src/Entities/ArrowEntity.cpp
@@ -3,6 +3,7 @@
#include "Player.h"
#include "ArrowEntity.h"
#include "../Chunk.h"
+#include "../Blocks/BlockButton.h"
@@ -84,6 +85,10 @@ void cArrowEntity::OnHitSolidBlock(Vector3d a_HitPos, eBlockFace a_HitFace)
// Broadcast arrow hit sound
m_World->BroadcastSoundEffect("entity.arrow.hit", m_HitBlockPos, 0.5f, static_cast<float>(0.75 + (static_cast<float>((GetUniqueID() * 23) % 32)) / 64));
+ // Trigger any buttons that were hit
+ // Wooden buttons will be depressed by the arrow
+ cBlockButtonHandler::OnArrowHit(*m_World, m_HitBlockPos, a_HitFace);
+
if ((m_World->GetBlock(m_HitBlockPos) == E_BLOCK_TNT) && IsOnFire())
{
m_World->SetBlock(m_HitBlockPos, E_BLOCK_AIR, 0);
diff --git a/src/Entities/Entity.h b/src/Entities/Entity.h
index 9cb0f970a..15a9cc824 100644
--- a/src/Entities/Entity.h
+++ b/src/Entities/Entity.h
@@ -189,6 +189,7 @@ public:
eEntityType GetEntityType(void) const { return m_EntityType; }
+ bool IsArrow (void) const { return IsA("cArrowEntity"); }
bool IsEnderCrystal(void) const { return (m_EntityType == etEnderCrystal); }
bool IsPlayer (void) const { return (m_EntityType == etPlayer); }
bool IsPickup (void) const { return (m_EntityType == etPickup); }