diff options
Diffstat (limited to 'src/Entities/Pawn.h')
-rw-r--r-- | src/Entities/Pawn.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Entities/Pawn.h b/src/Entities/Pawn.h index f68db63e9..f4b1cbbbf 100644 --- a/src/Entities/Pawn.h +++ b/src/Entities/Pawn.h @@ -66,10 +66,10 @@ public: void TargetingMe(cMonster * a_Monster); /** Returns all entity effects */ - std::map<cEntityEffect::eType, cEntityEffect *> GetEntityEffects(); + std::map<cEntityEffect::eType, cEntityEffect *> GetEntityEffects() const; /** Returns the entity effect, if it is currently applied or nullptr if not. */ - cEntityEffect * GetEntityEffect(cEntityEffect::eType a_EffectType); + cEntityEffect * GetEntityEffect(cEntityEffect::eType a_EffectType) const; protected: typedef std::map<cEntityEffect::eType, std::unique_ptr<cEntityEffect>> tEffectMap; |