summaryrefslogtreecommitdiff
path: root/src/actions
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/commands.cpp11
-rw-r--r--src/actions/commands.h1
2 files changed, 12 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp
index 29414b18d..6e8fca4a0 100644
--- a/src/actions/commands.cpp
+++ b/src/actions/commands.cpp
@@ -21,6 +21,7 @@
#include "actions/commands.h"
#include "actormanager.h"
+#include "auctionmanager.h"
#include "configuration.h"
#include "dropshortcut.h"
#include "emoteshortcut.h"
@@ -423,4 +424,14 @@ impHandler(imitation)
return true;
}
+impHandler(sendMail)
+{
+ if (auctionManager && auctionManager->getEnableAuctionBot())
+ {
+ auctionManager->sendMail(event.args);
+ return true;
+ }
+ return false;
+}
+
} // namespace Actions
diff --git a/src/actions/commands.h b/src/actions/commands.h
index fbee9e125..98f13b2d5 100644
--- a/src/actions/commands.h
+++ b/src/actions/commands.h
@@ -48,6 +48,7 @@ namespace Actions
decHandler(follow);
decHandler(navigate);
decHandler(imitation);
+ decHandler(sendMail);
} // namespace Actions
#undef decHandler