diff options
Diffstat (limited to 'src/Mobs/Witch.h')
-rw-r--r-- | src/Mobs/Witch.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Mobs/Witch.h b/src/Mobs/Witch.h index 7013f998a..a57016a2a 100644 --- a/src/Mobs/Witch.h +++ b/src/Mobs/Witch.h @@ -2,7 +2,7 @@ #pragma once #include "Monster.h" - +#include "Behaviors/BehaviorDoNothing.h" @@ -19,6 +19,9 @@ public: virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override; bool IsAngry() const { return false; } + +private: + cBehaviorDoNothing m_BehaviorDoNothing; } ; |