diff options
Diffstat (limited to '')
-rw-r--r-- | src/BlockEntities/NoteEntity.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/BlockEntities/NoteEntity.h b/src/BlockEntities/NoteEntity.h index 3a70ffec5..2cd703c52 100644 --- a/src/BlockEntities/NoteEntity.h +++ b/src/BlockEntities/NoteEntity.h @@ -2,7 +2,6 @@ #pragma once #include "BlockEntity.h" -#include "RedstonePoweredEntity.h" @@ -25,9 +24,6 @@ enum ENUM_NOTE_INSTRUMENTS class cNoteEntity : public cBlockEntity - // tolua_end - , public cRedstonePoweredEntity - // tolua_begin { typedef cBlockEntity super; public: @@ -51,14 +47,6 @@ public: virtual bool UsedBy(cPlayer * a_Player) override; virtual void SendTo(cClientHandle &) override {} - - virtual void SetRedstonePower(bool a_Value) override - { - if (a_Value) - { - MakeSound(); - } - } private: char m_Pitch; |