summaryrefslogtreecommitdiff
path: root/src/actions
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/commands.cpp13
-rw-r--r--src/actions/commands.h1
2 files changed, 14 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp
index b4ab52ba8..80e7493da 100644
--- a/src/actions/commands.cpp
+++ b/src/actions/commands.cpp
@@ -511,4 +511,17 @@ impHandler(removeAttack)
return true;
}
+impHandler(addIgnoreAttack)
+{
+ if (!actorManager || actorManager->isInIgnoreAttackList(event.args))
+ return false;
+
+ actorManager->removeAttackMob(event.args);
+ actorManager->addIgnoreAttackMob(event.args);
+
+ if (socialWindow)
+ socialWindow->updateAttackFilter();
+ return true;
+}
+
} // namespace Actions
diff --git a/src/actions/commands.h b/src/actions/commands.h
index 9686b59d2..8b02a7322 100644
--- a/src/actions/commands.h
+++ b/src/actions/commands.h
@@ -54,6 +54,7 @@ namespace Actions
decHandler(addPriorityAttack);
decHandler(addAttack);
decHandler(removeAttack);
+ decHandler(addIgnoreAttack);
} // namespace Actions
#undef decHandler