summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Entities/Pawn.cpp1
-rw-r--r--src/Entities/Pawn.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/Entities/Pawn.cpp b/src/Entities/Pawn.cpp
index e1ddca27e..13934d943 100644
--- a/src/Entities/Pawn.cpp
+++ b/src/Entities/Pawn.cpp
@@ -9,7 +9,6 @@
cPawn::cPawn(eEntityType a_EntityType, double a_Width, double a_Height)
: cEntity(a_EntityType, 0, 0, 0, a_Width, a_Height)
- , m_bBurnable(true)
, m_EntityEffects(std::map<cEntityEffect::eType, cEntityEffect>())
{
}
diff --git a/src/Entities/Pawn.h b/src/Entities/Pawn.h
index 7824a06f8..a954f4a70 100644
--- a/src/Entities/Pawn.h
+++ b/src/Entities/Pawn.h
@@ -26,7 +26,6 @@ public:
void RemoveEntityEffect(cEntityEffect::eType a_EffectType);
protected:
- bool m_bBurnable;
std::map<cEntityEffect::eType, cEntityEffect> m_EntityEffects;
} ; // tolua_export