diff options
Diffstat (limited to 'src/Entities/Pawn.cpp')
-rw-r--r-- | src/Entities/Pawn.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Entities/Pawn.cpp b/src/Entities/Pawn.cpp index b872cdfac..550d86e35 100644 --- a/src/Entities/Pawn.cpp +++ b/src/Entities/Pawn.cpp @@ -470,7 +470,7 @@ void cPawn::StopEveryoneFromTargetingMe() -std::map<cEntityEffect::eType, cEntityEffect *> cPawn::GetEntityEffects() +std::map<cEntityEffect::eType, cEntityEffect *> cPawn::GetEntityEffects() const { std::map<cEntityEffect::eType, cEntityEffect *> Effects; for (auto & Effect : m_EntityEffects) @@ -484,7 +484,7 @@ std::map<cEntityEffect::eType, cEntityEffect *> cPawn::GetEntityEffects() -cEntityEffect * cPawn::GetEntityEffect(cEntityEffect::eType a_EffectType) +cEntityEffect * cPawn::GetEntityEffect(cEntityEffect::eType a_EffectType) const { auto itr = m_EntityEffects.find(a_EffectType); return (itr != m_EntityEffects.end()) ? itr->second.get() : nullptr; |