diff options
Diffstat (limited to 'src/being/localplayer.cpp')
-rw-r--r-- | src/being/localplayer.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index 6722d5a4b..cde59bd7a 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -554,6 +554,22 @@ void LocalPlayer::setTarget(Being *const target) target->setShowName(true); } +Being *LocalPlayer::setNewTarget(const ActorTypeT type, + const AllowSort allowSort) +{ + if (actorManager) + { + Being *const target = actorManager->findNearestLivingBeing( + localPlayer, 20, type, allowSort); + + if (target && target != mTarget) + localPlayer->setTarget(target); + + return target; + } + return nullptr; +} + void LocalPlayer::setDestination(const int x, const int y) { mActivityTime = cur_time; |