diff options
Diffstat (limited to 'src/BlockEntities/CommandBlockEntity.h')
-rw-r--r-- | src/BlockEntities/CommandBlockEntity.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/BlockEntities/CommandBlockEntity.h b/src/BlockEntities/CommandBlockEntity.h index 0f93ff916..184211ce0 100644 --- a/src/BlockEntities/CommandBlockEntity.h +++ b/src/BlockEntities/CommandBlockEntity.h @@ -10,7 +10,6 @@ #pragma once #include "BlockEntity.h" -#include "RedstonePoweredEntity.h" @@ -19,8 +18,7 @@ // tolua_begin class cCommandBlockEntity : - public cBlockEntity, - public cRedstonePoweredEntity + public cBlockEntity { typedef cBlockEntity super; @@ -43,9 +41,6 @@ public: // tolua_begin - /** Sets the internal redstone power flag to "on" or "off", depending on the parameter. Calls Activate() if appropriate */ - virtual void SetRedstonePower(bool a_IsPowered) override; - /** Sets the command block to execute a command in the next tick */ void Activate(void); @@ -69,7 +64,6 @@ private: void Execute(); bool m_ShouldExecute; - bool m_IsPowered; AString m_Command; |