summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Ghast.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Ghast.h')
-rw-r--r--src/Mobs/Ghast.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Mobs/Ghast.h b/src/Mobs/Ghast.h
index 7fea31ae8..014e9c0dc 100644
--- a/src/Mobs/Ghast.h
+++ b/src/Mobs/Ghast.h
@@ -1,6 +1,6 @@
#pragma once
#include "Monster.h"
-
+#include "Behaviors/BehaviorDoNothing.h"
@@ -18,6 +18,9 @@ public:
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
bool IsCharging(void) const {return false; }
+
+private:
+ cBehaviorDoNothing m_BehaviorDoNothing;
} ;