diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-27 19:28:42 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-27 19:28:42 +0200 |
commit | 9b8dff31e6140cab7ea44ae219771ad6a043c62e (patch) | |
tree | 9e2c7d14fef7b933fdc8f7929f59eeb5ee979274 /source/DropSpenserEntity.h | |
parent | Fixed cItemGrid API, no more changeable GetSlot(). (diff) | |
download | cuberite-9b8dff31e6140cab7ea44ae219771ad6a043c62e.tar cuberite-9b8dff31e6140cab7ea44ae219771ad6a043c62e.tar.gz cuberite-9b8dff31e6140cab7ea44ae219771ad6a043c62e.tar.bz2 cuberite-9b8dff31e6140cab7ea44ae219771ad6a043c62e.tar.lz cuberite-9b8dff31e6140cab7ea44ae219771ad6a043c62e.tar.xz cuberite-9b8dff31e6140cab7ea44ae219771ad6a043c62e.tar.zst cuberite-9b8dff31e6140cab7ea44ae219771ad6a043c62e.zip |
Diffstat (limited to 'source/DropSpenserEntity.h')
-rw-r--r-- | source/DropSpenserEntity.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source/DropSpenserEntity.h b/source/DropSpenserEntity.h index f4221808c..d58f74f04 100644 --- a/source/DropSpenserEntity.h +++ b/source/DropSpenserEntity.h @@ -65,11 +65,16 @@ public: /// Sets the dropspenser to dropspense an item in the next tick
void Activate(void);
+ /// Sets the internal redstone power flag to "on" or "off", depending on the parameter. Calls Activate() if appropriate
+ void SetRedstonePower(bool a_IsPowered);
+
// tolua_end
protected:
bool m_ShouldDropSpense; ///< If true, the dropspenser will dropspense an item in the next tick
-
+ bool m_IsPowered; ///< Set to true when the dropspenser receives redstone power.
+
+ /// Does the actual work on dropspensing an item. Chooses the slot, calls DropSpenseFromSlot() and handles smoke / sound effects
void DropSpense(void);
/// Override this function to provide the specific behavior for item dropspensing (drop / shoot / pour / ...)
|