summaryrefslogtreecommitdiffstats
path: root/source/Pawn.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Pawn.h')
-rw-r--r--source/Pawn.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/Pawn.h b/source/Pawn.h
index 9ddc61296..dddb98699 100644
--- a/source/Pawn.h
+++ b/source/Pawn.h
@@ -83,7 +83,7 @@ public:
cPawn(eEntityType a_EntityType);
- virtual void Tick(float a_Dt, MTRand & a_TickRandom) override;
+ virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
// tolua_begin
@@ -150,10 +150,12 @@ public:
virtual void InStateBurning(float a_Dt);
- virtual void CheckMetaDataBurn(void);
+ virtual void CheckMetaDataBurn(cChunk & a_Chunk);
virtual void SetMaxHealth(short a_MaxHealth);
virtual short GetMaxHealth() { return m_MaxHealth; }
+
+ bool IsBurning(void) const { return (m_MetaData == BURNING); }
protected:
short m_Health;