diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2015-12-19 22:20:56 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2015-12-19 22:20:56 +0100 |
commit | b8752bb26e91bcdcebfb8dd43e5794251ff70a89 (patch) | |
tree | 95048f5a2a833c1d43785f6eaea070627c2b9ebe /src/BlockEntities/NoteEntity.h | |
parent | Merge pull request #2776 from cuberite/AtomicBoolIsthread (diff) | |
parent | Reorganised the redstone simulator (diff) | |
download | cuberite-b8752bb26e91bcdcebfb8dd43e5794251ff70a89.tar cuberite-b8752bb26e91bcdcebfb8dd43e5794251ff70a89.tar.gz cuberite-b8752bb26e91bcdcebfb8dd43e5794251ff70a89.tar.bz2 cuberite-b8752bb26e91bcdcebfb8dd43e5794251ff70a89.tar.lz cuberite-b8752bb26e91bcdcebfb8dd43e5794251ff70a89.tar.xz cuberite-b8752bb26e91bcdcebfb8dd43e5794251ff70a89.tar.zst cuberite-b8752bb26e91bcdcebfb8dd43e5794251ff70a89.zip |
Diffstat (limited to 'src/BlockEntities/NoteEntity.h')
-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; |