diff options
Diffstat (limited to 'src/Mobs/Behaviors/BehaviorDayLightBurner.h')
-rw-r--r-- | src/Mobs/Behaviors/BehaviorDayLightBurner.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Mobs/Behaviors/BehaviorDayLightBurner.h b/src/Mobs/Behaviors/BehaviorDayLightBurner.h index d967b5f68..f059965c5 100644 --- a/src/Mobs/Behaviors/BehaviorDayLightBurner.h +++ b/src/Mobs/Behaviors/BehaviorDayLightBurner.h @@ -11,15 +11,15 @@ class cChunk; class cBehaviorDayLightBurner { public: - cBehaviorDayLightBurner(cMonster * a_Parent); + cBehaviorDayLightBurner(cMonster * a_Parent); - void Tick(cChunk & a_Chunk, bool WouldBurn); - bool WouldBurnAt(Vector3d a_Location, cChunk & a_Chunk); + void PostTick(cChunk & a_Chunk, bool WouldBurn); + bool WouldBurnAt(Vector3d a_Location, cChunk & a_Chunk); - // Functions our host Monster should invoke: - void Tick(); + // Functions our host Monster should invoke: + void Tick(); private: - cMonster * m_Parent; // Our Parent - cEntity * m_Attacker; // The entity we're running away from + cMonster * m_Parent; // Our Parent + cEntity * m_Attacker; // The entity we're running away from }; |