diff options
Diffstat (limited to 'src/Mobs/Villager.h')
-rw-r--r-- | src/Mobs/Villager.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/Mobs/Villager.h b/src/Mobs/Villager.h index 141193212..72c7c7301 100644 --- a/src/Mobs/Villager.h +++ b/src/Mobs/Villager.h @@ -10,7 +10,7 @@ #include "Behaviors/BehaviorWanderer.h" #include "Monster.h" - +#include "Behaviors/BehaviorDoNothing.h" class cVillager : public cMonster @@ -59,17 +59,12 @@ public: private: // Tick controlling behaviors - cBehaviorBreeder m_BehaviorBreeder; - cBehaviorItemFollower m_BehaviorItemFollower; - cBehaviorCoward m_BehaviorCoward; - cBehaviorWanderer m_BehaviorWanderer; - + cBehaviorDoNothing m_BehaviorDoNothing; int m_ActionCountDown; int m_Type; bool m_VillagerAction; Vector3i m_CropsPos; - } ; |