summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Behaviors/BehaviorItemFollower.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Behaviors/BehaviorItemFollower.h')
-rw-r--r--src/Mobs/Behaviors/BehaviorItemFollower.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Mobs/Behaviors/BehaviorItemFollower.h b/src/Mobs/Behaviors/BehaviorItemFollower.h
index 09acfe473..ab33de65f 100644
--- a/src/Mobs/Behaviors/BehaviorItemFollower.h
+++ b/src/Mobs/Behaviors/BehaviorItemFollower.h
@@ -9,7 +9,7 @@ class cBehaviorItemFollower;
class cMonster;
class cItems;
-class cBehaviorItemFollower
+class cBehaviorItemFollower : public cBehavior
{
public:
cBehaviorItemFollower(cMonster * a_Parent);
@@ -17,7 +17,8 @@ public:
void GetBreedingItems(cItems & a_Items);
// Functions our host Monster should invoke:
- void Tick();
+ bool IsControlDesired() override;
+ void Tick() override;
private: