diff options
-rw-r--r-- | src/actormanager.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/actormanager.cpp b/src/actormanager.cpp index 7e1d8c9a2..37f2e8941 100644 --- a/src/actormanager.cpp +++ b/src/actormanager.cpp @@ -1352,8 +1352,7 @@ Being *ActorManager::findNearestLivingBeing(const Being *const aroundBeing, priority -= 10000; // but still respect their priorities. } } - else if (auto attackIter = attackMobs.find(being->getName()); - attackIter != attackMobs.end()) + else if (attackMobs.find(being->getName()) != attackMobs.end()) { // prioritise attack mobs that are within attack range if (abs(dx) <= attackRange2 && abs(dy) <= attackRange2) |