diff options
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r-- | src/actions/actions.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index 188a46ea1..2eda2b6f3 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -431,6 +431,24 @@ impHandler0(targetAttack) return false; } +impHandler0(attackHuman) +{ + if (!actorManager || !localPlayer) + return false; + + Being *const target = actorManager->findNearestLivingBeing( + localPlayer, 10, ActorType::PLAYER, true); + if (target) + { + if (localPlayer->checAttackPermissions(target)) + { + localPlayer->setTarget(target); + localPlayer->attack2(target, true); + } + } + return true; +} + impHandler0(safeVideoMode) { if (mainGraphics) |