From 258318ab98771f03d0109d7dfba81daaed26a2a0 Mon Sep 17 00:00:00 2001 From: DrButcher Date: Sun, 3 May 2020 22:05:32 +0200 Subject: Buttons can now be triggered by arrows. (#4670) * Buttons can now be triggered by arrows. --- src/Entities/Entity.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Entities/Entity.h') 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); } -- cgit v1.2.3