summaryrefslogtreecommitdiff
path: root/src/actions
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/commands.cpp7
-rw-r--r--src/actions/commands.h1
2 files changed, 8 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp
index aba86a87f..79ca62973 100644
--- a/src/actions/commands.cpp
+++ b/src/actions/commands.cpp
@@ -205,4 +205,11 @@ impHandler(chatNeutral)
return true;
}
+impHandler(chatBlackList)
+{
+ // TRANSLATORS: blacklist command
+ changeRelation(event.args, PlayerRelation::BLACKLISTED, _("blacklisted"), event.tab);
+ return true;
+}
+
} // namespace Actions
diff --git a/src/actions/commands.h b/src/actions/commands.h
index 32a8155c7..9faa40b92 100644
--- a/src/actions/commands.h
+++ b/src/actions/commands.h
@@ -33,6 +33,7 @@ namespace Actions
decHandler(chatFriend);
decHandler(chatDisregard);
decHandler(chatNeutral);
+ decHandler(chatBlackList);
} // namespace Actions
#undef decHandler