summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/actions/actions.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp
index a4520543c..aaa71848f 100644
--- a/src/actions/actions.cpp
+++ b/src/actions/actions.cpp
@@ -832,11 +832,8 @@ impHandler0(attackHuman)
localPlayer, 10, ActorType::Player, AllowSort_true);
if (target)
{
- if (localPlayer->checAttackPermissions(target))
- {
- localPlayer->setTarget(target);
- localPlayer->attack2(target, true);
- }
+ localPlayer->setTarget(target);
+ localPlayer->attack2(target, true);
}
return true;
}